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?


  • ZeldorBlat

    #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]

    Did you try:

    error_reporting (E_ALL);
    ini_set('displa y_errors', 1);

    Comment

    • Sheldon Glickler

      #3
      Re: error levels


      "ZeldorBlat " <zeldorblat@gma il.com> wrote in message
      news:1140968876 .989301.177080@ t39g2000cwt.goo glegroups.com.. .[color=blue]
      >
      > Sheldon Glickler wrote:[color=green]
      >> 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]
      >
      > Did you try:
      >
      > error_reporting (E_ALL);
      > ini_set('displa y_errors', 1);
      >[/color]

      Thanks. I didn't have the ini_set.

      Shelly


      Comment

      Working...