Enable Error Reporting for PHP

If you don’t have access to the php.ini or have issue setting up .htaccess to enable error reporting.

You can try the following code

ini_set( ‘display_errors’, true );
error_reporting( E_ALL );

Leave a Reply