PHP offers simple but effective solution to log all errors to a log fiie.
On all production web server you must turn off displaying error to end users via a web browser. Remember PHP gives out lots of information about path, database schema and all other sort of sensitive information. You are strongly advised to use error logging in place of error displaying on production web sites. The idea is quite simple -only developer should see php error log.
How do I log all php errors to a log fiie?
Just add following line to /etc/php.ini to log errors to specified file – /var/log/php-scripts.log
# vi /etc/php.ini
Modify error_log directive
error_log = /var/log/php-scripts.log
Make sure display_errors set to Off (no errors to end users)
display_errors = Off
Save and close the file. Restart web server:
# /etc/init.d/httpd restart
How do I log errors to syslog or Windows Server Event Log?
Modify error_log as follows :
error_log = syslog
How do I see logs?
Login using ssh or download a log file /var/log/php-scripts.log using sftp:
$ sudo tail -f /var/log/php-scripts.log
Updated for accuracy!
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- 10 Greatest Open Source Software Of 2009
- My 10 UNIX Command Line Mistakes
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email this to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: Apr/14/2008



{ 1 trackback }
{ 14 comments… read them below or add one }
It would be much better to have a single config php-file and define them there instead.
ini_set("log_errors" , "1");
ini_set("error_log" , "Errors.log.txt");
ini_set("display_errors" , "0");
You have to watch, that the logfile is writeable by the web-server process!
@Anjanesh, good point, user can set those from a php script itself.
@Philipp, yes I did assumed that Apache or lighttpd has a write permissions
Appreciate your posts!
Small misspelling in title: “log fiie”
Thanks for the heads up!
I have ligttpd (PHP FastCGI) and I cannot see the log.
How can I get it in this case ?
“yes I did assumed that Apache or lighttpd has a write permissions”
In the case that it doesn’t, how can this be changed?
Carl,
Use chmod and chown command to set permissions.
Hellow,
Is it possible to log errors of diffrent websites in different errorfiles?
I have a server that’s hosting different websites and I want that all of the php-errors are logged in different file. For each website a file.
Is that possible and how do I do it?
tnx in advance
Kurt,
You need to setup php as FastCGI which allows the -c option. With this option you can provide custom php.ini file and error log file for each user. See this article for more info. This is lighttpd specific but you should able to setup with Apache or any other server with mod_fastcgi.
HTH
@Kurt
You might try ini_set() as well if you have trouble getting custom php.ini files to work
Hi, does the init_set solution also work with Apache installed on Windows? It doe snot seem to be working for me.
I think it would need to enable this tag (log_errors = On) php.ini to get this complete.
But I suggest it’s not a good Idea to enable on the main configuration file where a server hosted multiple sites. Just add this entries on .htaccess make sense on such case to trouble shoot.
You have great blog and this post is good!
–