PHP Error Log

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Scott Castillo

    PHP Error Log

    I can't seem to find the PHP error log file on a Windows system.

    Does anybody know where it is?

    Thanks for the help.


  • Pedro Graca

    #2
    Re: PHP Error Log

    Scott Castillo wrote:[color=blue]
    > I can't seem to find the PHP error log file on a Windows system.
    >
    > Does anybody know where it is?[/color]

    Run the phpinfo script (see below).

    Search for "error_log" . This will tell you where *your* error_log is.
    Search for "log_errors ". This will tell you whether errors are being
    logged.
    Search for "error_reportin g". This will tell you what errors are being
    logged.


    phpinfo script:
    <?php
    phpinfo();
    ?>
    --
    --= my mail box only accepts =--
    --= Content-Type: text/plain =--
    --= Size below 10001 bytes =--

    Comment

    • Scott Castillo

      #3
      Re: PHP Error Log

      thank you.

      "Pedro Graca" <hexkid@hotpop. com> wrote in message
      news:c0ij55$16k 7hn$1@ID-203069.news.uni-berlin.de...[color=blue]
      > Scott Castillo wrote:[color=green]
      > > I can't seem to find the PHP error log file on a Windows system.
      > >
      > > Does anybody know where it is?[/color]
      >
      > Run the phpinfo script (see below).
      >
      > Search for "error_log" . This will tell you where *your* error_log is.
      > Search for "log_errors ". This will tell you whether errors are being
      > logged.
      > Search for "error_reportin g". This will tell you what errors are being
      > logged.
      >
      >
      > phpinfo script:
      > <?php
      > phpinfo();
      > ?>
      > --
      > --= my mail box only accepts =--
      > --= Content-Type: text/plain =--
      > --= Size below 10001 bytes =--[/color]


      Comment

      Working...