Turn on php logging edit: /etc/php.ini
You can use the following command to find out where the php logs are written:

1
grep error_log /etc/php.ini

Uncomment or edit to look like the following:

1
log_errors = on
1
error_reporting = E_ALL
1
 
1