I am trying to debug my PHP application on another server and I can't discern the parse/fatal/etc errors due to lack of display. I do not have permissions to make any changes to php.ini, and error_reporting(E_ALL) failed to allow for any display.
I was told to make changes to .htaccess and I did so, to no avail:
php_value error_reporting 2047 # Just warnings, which is what I want
php_flag log_errors 1 #this turns logging on and off in the syslog
php_flag display_errors 1 #this turns error display at client's browser on/off
php_value display_errors 1
Could someone help me with this, I can't see errors thus debugging is nearly impossible in my scripts!
Thanx
Phil