Jump to content

error_reporting issue


cytech

Recommended Posts

Hey All,

 

I am on a live server(not a development box) that has error_reporting set to 2047. Now this is E_USER_NOTICE.

 

I am testing a new system and well, there are errors with it, right now all I get is a blank page with no output from php letting me know whats wrong.

 

On the top of the script I put:

ini_set('error_reporting', '8191');

 

That didnt' work so I put:

ini_set('error_reporting', 8191);

 

that didn't work so I put:

error_reporting(E_ALL);

 

that didn't work either haha - So how can I see an error without having to go directly to the php.ini file and changing it? ???

 

Anyone with some advice will be a great help!

Link to comment
https://forums.phpfreaks.com/topic/95099-error_reporting-issue/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.