On Wednesday 15 July 2009 12:44:21 Javier Ruiz wrote:
> Hi!
>
> I'm trying to append some extra info to my php errors. It works well when
> I'm displaying errors on screen, but it doesn't work to log the extra info
> into an error file (log_errors and  error_log). I mean, if I use this:
>
> <?php
> ini_set('display_errors', 1);
> ini_set('log_errors', 1);
> ini_set('error_log', './ERRORS');
> ini_set('error_append_string', " -- SomeStuff!");
> require 'test.php';   // this file contains syntax errors...
>
>
> When I issue this using a web browser, I get a syntax error shown in the
> browser and it contains the "SomeStuff" text, but in the ERRORS file I just
> get the php error without the "SomeStuff" text...
>
> Is there any way to get this working?
>
> Thanks!
> Regards,
>
> JaviRuiz.

Try setting this in your php.ini rather than PHP and see if that does the 
trick

-- 
Thanks,
Ash
http://www.ashleysheridan.co.uk

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to