This is a discussion on error levels within the PHP Language forums, part of the PHP Programming Forums category; My system admin turned down all the error levels so that the warnings would not go to the user. Now ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
My system admin turned down all the error levels so that the warnings would
not go to the user. Now I find that in dubugging, I don't get messages as to what is wrong. I tried error_reporting(20p47); . but it diidn't do anything. How can I get the messages as to where my coding errors are without going back to the admin guy? |
|
|||
|
Sheldon Glickler wrote: > My system admin turned down all the error levels so that the warnings would > not go to the user. Now I find that in dubugging, I don't get messages as > to what is wrong. I tried error_reporting(20p47); . but it diidn't do > anything. How can I get the messages as to where my coding errors are > without going back to the admin guy? Did you try: error_reporting(E_ALL); ini_set('display_errors', 1); |
|
|||
|
"ZeldorBlat" <zeldorblat@gmail.com> wrote in message news:1140968876.989301.177080@t39g2000cwt.googlegr oups.com... > > Sheldon Glickler wrote: >> My system admin turned down all the error levels so that the warnings >> would >> not go to the user. Now I find that in dubugging, I don't get messages >> as >> to what is wrong. I tried error_reporting(20p47); . but it diidn't do >> anything. How can I get the messages as to where my coding errors are >> without going back to the admin guy? > > Did you try: > > error_reporting(E_ALL); > ini_set('display_errors', 1); > Thanks. I didn't have the ini_set. Shelly |