O omardadi New member Joined Apr 12, 2010 Messages 8 Apr 17, 2010 #1 How to turn on PHP error logging to see runtime errors from the PHP parser (i.e. the 'php.errors' log file).
How to turn on PHP error logging to see runtime errors from the PHP parser (i.e. the 'php.errors' log file).
ranz Verified User Joined Apr 8, 2010 Messages 305 Location Australia Apr 18, 2010 #2 You are probably after php support: http://php.net/manual/en/errorfunc.configuration.php To make it easy, set error_log and log_errors in your php.ini You can also do some tricks with .htaccess: php_value display_errors 1 php_value display_startup_errors 1
You are probably after php support: http://php.net/manual/en/errorfunc.configuration.php To make it easy, set error_log and log_errors in your php.ini You can also do some tricks with .htaccess: php_value display_errors 1 php_value display_startup_errors 1
A agraj1 New member Joined Apr 18, 2010 Messages 6 Apr 19, 2010 #3 Sends an error message to the web server's error log, a TCP port or to a file. PHP: bool error_log ( string $message [, int $message_type = 0 [, string $destination [, string $extra_headers ]]] )
Sends an error message to the web server's error log, a TCP port or to a file. PHP: bool error_log ( string $message [, int $message_type = 0 [, string $destination [, string $extra_headers ]]] )