[Problem]
Recently, when working with PHP at Cafe 24 Hosting,
no error message appears on the screen, making debugging very difficult
[Solution]
Add below to the .htaccess content.
======================================
php_value error_reporting 22527
php_flag display_errors on
==================================== ==
1. Add
ini_set("display_errors", 1);
error_reporting(E_ALL ^ E_NOTICE);
2. Using set_error_handler class published on the net