Click to See Complete Forum and Search --> : Alright, another problem....


ronin_1
02-27-2003, 10:08 PM
Ok, I have error reporting turned on:



error_reporting = E_ALL

; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = On



and php isn't displaying any errors. Anybody?

largo
03-04-2003, 06:00 PM
try this:

// Set debug level -- 1 or 0. (0 = production environment)
$debug = 1;

if ($debug == true) {
error_reporting(E_ALL);
@ini_set('display_errors', '1');
}

let me know how it goes.