vote up 0 vote down star

Hi, I am developing a PHP application using our XAMPP setup as a test server.

Once the app is ready to deploy, I have to upload it to the client's server,

The problem is the client's server is running IIS 7, and every time there is a PHP error it just displays a blank page...

Now, my app has error_reporting(E_ALL) already set, and I do not have access to the php.ini file (don't ask why!)...

and I have tried every combination of parameters for error_reporting() found here: http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting

Can anyone point me towards another way of getting the errors to show up at all?

btw: I am using codeigniter, and I've tried the error_logging functions it provides to no avail...

flag

this is a stupid question, but did you suppress your warnings with the @ notation? – aforloney Oct 18 at 23:28
what does var_dump(error_reporting(E_ALL)) output? Also maybe check phpinfo() – Lance Rushing Oct 18 at 23:29
@Anthony not a stupid question at all... but the answer is no – pǝlɐɥʞ Oct 18 at 23:35

2 Answers

vote up 1 vote down check

It's probably good to have it turned off on a production server. You can always turn error logging on, if they'll give you access to the log file.

But for a quick fix, you can just turn display_errors on. Just remember to turn it off and set up logging when you're done getting the code configured to run on the client's server.

<?PHP
ini_set('display_errors',true);
link|flag
Thanks for that, that fixed it – pǝlɐɥʞ Oct 19 at 9:00
vote up 1 vote down

try

ini_set("display_errors", 1);

It's possible this is turned off.

link|flag
+1 for the effort, but timdev was in there before you – pǝlɐɥʞ Oct 19 at 9:00
Yeah, he was, just. :) – John Cavan Oct 19 at 10:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.