tags:

views:

28

answers:

3

I've been testing PHP projects locally using XAMPP (on Windows). I can find the PHP error log though. Any ideas?

+1  A: 

\xampp\apache\logs\error.log, where xampp is your installation folder. If you haven't changed the error_log setting in PHP (check with phpinfo()), it will be logged to the Apache log.

Lekensteyn
+1  A: 

Look in your configuration file and search for the error_log setting. Or use phpinfo() to find this setting.

greg0ire
+1  A: 

This might be a simple case of the PHP error log being turned off.

Dave Everitt