How to enable PHP error reporting via .htaccess File
You can enable error reporting under Apache, even if you don't have administrator rights and can't access main httpd.conf file.
To enable error reporting in PHP, use your favorite text editor and add the following line to the .htaccess file located in the directory where your .php files reside:
php_flag display_errors on
This will override Apache's default settings to display PHP errors, unless your Apache configuration doesn't allow this modification.
Listed in
Wow, this one was quick and easy. Your FAQ site has been useful, as always.
yes, it worked, definitely a good tip. thnx
You can also enable displaying of error messages in php.ini file.
Try http://php.net