Hi,
We just got a "virtual" server setup with PHP. When coding, if we make even the simplest of errors, say... missing a ;... we get a blank screen. If we add....
ini_set('display_errors',1);
error_reporting(E_ALL);
That doesn't show anything either... just a blank screen.
We made a simple error test program (with very basic errors) that included these two lines at the top and tried it on a friends PHP server. His reported the problems when the page was executed.
Being this is a virtual server, we have access to most of the "setup" for it but can't find anything that could potentially be blocking error reporting.
We'd like to be able to turn these errors on and off during programming and testing... but right now, it's driving us nuts. Have to "copy" the code and run it through a PHP Code Checker online somewhere if the error isn't obvious.
Any suggestions as to where to look?
Thanks