php error logs
Need help with php.ini config - or other config if php.ini is not starting point - for php error logs.
Kind regards,
P.S. I know where to get apache error logs and those logs are not sufficient.
3 Replies
log_errors = On
That will make PHP errors show up in Apache logs by default.
If you want to send error messages to another file, you can also add
error_log = /path/to/error_log
but you'll need to make sure that the log file is writable by www-data.