On 05/05/2017 07:13 AM, John Covici wrote: > > The php log is not mentioned in the .htaccess file of owncloud. But > regardless of owncloud, php fatal errors are not logged anywhere under > apache, even though I have log_errors and a log file name. >
Apache doesn't know anything about what happens in the PHP code, so the errors should be logged in that separate PHP error log, if anywhere. As a temporary measure, you can try enabling "display_errors" and "display_startup_errors" in your (Apache) php.ini. That should convince PHP to spit out the error into your browser when you visit the page, rather than (or in addition to) logging it.

