Code Snippet
PHP Error Logging
Log errors to a file, and prevent showing them to the user. Make sure that the file exists and youre able to write to it.
# display no errs to user
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
# log to file
php_flag log_errors on
php_value error_log /location/to/php_error.log
this is really interesting thank you
Where does this code go? .htaccess, a php file?
The code goes into the .htaccess file
Thanks, that´s quite interessting.
Too bad it won’t work on a lot of web servers because of the restrictive AllowOverride setting :(
You can’t set flags in .htaccess if PHP is installed as CGI, only if is installed as Apache Module. Check before with phpinfo();
Bye
This will remove it from my original var log, cant we log at both place?
Thanks
Need free essays?? http://www.top-essays.tk
Nice One…….
Just try it for my wp blog and it’s working. This easier mylife to find some errors. Awesome.
hello nice work