Thats not a problem, i would suggest spending some time learning about htaccess and virtual host settings if you run many websites.
The htaccess and virtual host settings needed are:
Errors should then start being logged into the domain error log (/var/sentora/logs/domains/)
Oh a note on the error_reporting value, this can differ between php versions, to find the value you need, run:
Which should give 32767
The htaccess and virtual host settings needed are:
Code:
php_flag log_errors on
php_flag display_errors on
php_value error_reporting 32767
Errors should then start being logged into the domain error log (/var/sentora/logs/domains/)
Oh a note on the error_reporting value, this can differ between php versions, to find the value you need, run:
Code:
php -r "echo E_ALL;"
Which should give 32767