I've been using XAMPP for Windows.
Where does PHP's error log reside in XAMPP?
\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.
I found it in:
\xampp\php\logs\php_error_log
For mac users XAMPP Version 1.7.3
/Applications/XAMPP/xamppfiles/logs/error_log
This might be a simple case of the PHP error log being turned off.
For any one searching for the php log file in XAMPP for Ubuntu, its:
/opt/lampp/logs/php_error_log
Most probably it will be having a big size (mine was about 350 mbs) and it slowed down my text editor after opening. If you do not care about all the past logs you can empty the file easily by simply going to the terminal and then writing these three lines one by one:
sudo su
cd /opt/lampp/logs/
> php_error_log
And newer logs will be easy and fast to open now.
Hope some Ubuntu user finds it helpful.
\xampp\php\logs
did not exist at all for me - for whatever reason.
I simply had to create a folder in \xampp\php\
called logs
and then the php_error_log
file was created and written to.
Look in your configuration file and search for the error_log setting. Or use phpinfo() to find this setting.
For my issue, I had to zero out the log:
sudo bash -c ' > /Applications/XAMPP/xamppfiles/logs/php_error_log '
\xampp\apache\logs\error.log is the default location of error logs in php.
By default xampp php log file path is in /xampp_installation_folder/php/logs/php_error_log, but I noticed that sometimes it would not be generated automatically. Maybe it could be a Windows account write permission problem? I am not sure, but I created the logs folder and php_error_log file manually and then php logs were logged in it finally.
As said above you can find PHP error log in windows. In c:\xampp\apache\logs\error.log. You can easily display the last logs by tail -f .\error.log
来源:https://stackoverflow.com/questions/3719549/where-does-phps-error-log-reside-in-xampp