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 =--
"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