• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

PHP Error Reporting on 8.1

A

adstock

Guest
I have had a look through the forums and Documents and I cannot find out how how to turn on Error Reporting on PHP for a domain we are trying to debug. the following is guess work by piecing together my understanding of how Plesk works.

My guess is that in version 8.1 you need to edit the httpd.include file held in the conf directory of the domain, and under the orgiinal php directives I have added

php_admin_flag display_errors 1
php_admin_value error_reporting "E_ALL"

I have restarted Apache and still no Joy.

The File now look like this

<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/var/www/vhosts/investmentandbusinessnews.co.uk/httpsdocs:/tmp"
php_admin_flag display_errors 1
php_admin_value error_reporting "E_ALL"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
pdmin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/var/www/vhosts/investmentandbusinessnews.co.uk/httpsdocs:/tmp"
php_admin_flag display_errors 1
php_admin_value error_reporting "E_ALL"
hp_admin_flag safe_mode on


Any pointers would be most helpful
 
You should never edit httpd.include, your changes will get overwritten. Refer to Plesk's documentation (click on "Appendix A. Advanced Features" and than on "Including Directives into Web Server Configuration File").
 
Back
Top