error levels

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sheldon Glickler

    error levels

    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?



  • Erwin Moller

    #2
    Re: error levels

    Sheldon Glickler wrote:
    [color=blue]
    > 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?[/color]

    Hmm, maybe you can overwrite with ini_set.
    I do not know if that will be better than error_reporting (E_ALL), but try
    it.

    Here is more:


    So try something like:
    ini_set("error_ reporting",E_AL L);

    above your script.

    Regards,
    Erwin Moller

    Comment

    Working...