How to Enable PHP Error Reporting

If your application/script is not working as expected and you're not sure why, a great way to debug this would be to enable error reporting in PHP through your htaccess. Add the following lines to your .htaccess file:  

php_flag display_errors on
php_value error_reporting "E_ALL & ~E_STRICT & ~E_NOTICE"

This will display errors from your PHP sites/applications to help debug any error(s) you're running into.

Was this answer helpful?

Also Read

How to Enable Mod_Rewrite Module

In order to enable Mod_Rewrite for your site you should create a text file called .htacccess in...

How to generate CSR in cPanel for SSL Certificate issuing

Follow these simple steps Login to cPanel (yourdomain/cpanel) Click SSL/TLS > Generate,...

Default files / folders of cPanel

Regular files & folders In a fresh cPanel hosting account, these are the files and folders...

How to Install SSL Certificate in cPanel

You can install it yourself from cPanel by following this: Login to cPanel and go to SSL/TLS...

How to Setup your new SSL Certificate

Setting up your newly purchased SSL Certificate is easy and all automated. However, before you...