Re: [PHP] PHP Error logging

2011-01-17 Thread Daniel Brown
On Mon, Jan 17, 2011 at 19:33, Jimmy Stewpot wrote: > Hello, > > I currently have a strange issue where we are seeing 'random errors' being > displayed to end users. What I find most interesting is that in the php.ini > file we have the following error settings. > > error_reporting  =  E_ALL & ~

[PHP] PHP Error logging

2011-01-17 Thread Jimmy Stewpot
Hello, I currently have a strange issue where we are seeing 'random errors' being displayed to end users. What I find most interesting is that in the php.ini file we have the following error settings. error_reporting = E_ALL & ~E_NOTICE display_errors = Off display_startup_errors = Off log_er

Re: [PHP] Php error

2009-01-24 Thread Per Jessen
mattias wrote: > ERR_DB_NO_DB_PASS >What will this meen? No database password has been set in config. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Php error

2009-01-24 Thread mattias
ERR_DB_NO_DB_PASS What will this meen? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php error loadin file

2008-02-11 Thread Shawn McKenzie
Daniel Brown wrote: > On Feb 11, 2008 11:12 AM, <[EMAIL PROTECTED]> wrote: >>> On Feb 11, 2008 10:40 AM, <[EMAIL PROTECTED]> wrote: HEllo with the next code i am trying for loading one file $mibool = FALSE; $Descriptor2 = fopen("usuarios.txt","r"); >>> Does this

Re: [PHP] php error loadin file

2008-02-11 Thread Daniel Brown
On Feb 11, 2008 11:12 AM, <[EMAIL PROTECTED]> wrote: > > On Feb 11, 2008 10:40 AM, <[EMAIL PROTECTED]> wrote: > >> HEllo > >> with the next code i am trying for loading one file > >> > >> > >> $mibool = FALSE; > >> $Descriptor2 = fopen("usuarios.txt","r"); > > > > Does this file exist in the

Re: [PHP] php error loadin file

2008-02-11 Thread miren
> On Feb 11, 2008 10:40 AM, <[EMAIL PROTECTED]> wrote: >> HEllo >> with the next code i am trying for loading one file >> >> >> $mibool = FALSE; >> $Descriptor2 = fopen("usuarios.txt","r"); > > Does this file exist in the directory from which the script is > ultimately run, and is it readable?

Re: [PHP] php error loadin file

2008-02-11 Thread Daniel Brown
On Feb 11, 2008 10:40 AM, <[EMAIL PROTECTED]> wrote: > HEllo > with the next code i am trying for loading one file > > > $mibool = FALSE; > $Descriptor2 = fopen("usuarios.txt","r"); Does this file exist in the directory from which the script is ultimately run, and is it readable? > $usuario

[PHP] php error loadin file

2008-02-11 Thread miren
HEllo with the next code i am trying for loading one file $mibool = FALSE; $Descriptor2 = fopen("usuarios.txt","r"); $usuarios=array(); $i=0; while(!feof($Descriptor2)){ $buffer = fgets($Descriptor2,4086); $usuarios[$i]=$buffer; $i++; } fclose($Descriptor2); $miusername = trim($userna

Re: [PHP] PHP error catching

2007-06-20 Thread Stut
Miguel J. Jiménez wrote: Hi. I have been asked to try to catch the php error generated when the PHP script exceed execution time, but I do not know if that can be done... Any ideas? Mainly I want to show a custimized error page instead of that error (kind of "Sorry but we are busy right now" or

[PHP] PHP error catching

2007-06-20 Thread Miguel J. Jiménez
Hi. I have been asked to try to catch the php error generated when the PHP script exceed execution time, but I do not know if that can be done... Any ideas? Mainly I want to show a custimized error page instead of that error (kind of "Sorry but we are busy right now" or something similar) Than

Re: [PHP] Php Error Output Redirection

2006-12-18 Thread Robert Cummings
On Mon, 2006-12-18 at 20:55 +0200, Sancar Saran wrote: > > Oh really? > so where is my spy-adware windows trojan prize ? > > Thank you Jochem, asking you always easy than the searching documentation and > I always wonder what can I do without you and your great comments :). > > I promise, next

Re: [PHP] Php Error Output Redirection

2006-12-18 Thread Sancar Saran
On Monday 18 December 2006 15:39, Jochem Maas wrote: > Sancar Saran wrote: > > Hi, > > > > Is anyone know that errors generated by php (like Notice: Uninitialized > > string offset: 0 in ...) may stored in a php variable and print out later > > ? > > > > I want to put them some other location and s

Re: [PHP] Php Error Output Redirection

2006-12-18 Thread Jochem Maas
Sancar Saran wrote: > Hi, > > Is anyone know that errors generated by php (like Notice: Uninitialized > string > offset: 0 in ...) may stored in a php variable and print out later ? > > I want to put them some other location and show them in a debug window. I do > this for my error reporting a

Re: [PHP] Php Error Output Redirection

2006-12-18 Thread Saqib Ali
Use the set_error_handle function: http://us2.php.net/manual/en/function.set-error-handler.php saqib http://www.full-disk-encryption.net On 12/18/06, Sancar Saran <[EMAIL PROTECTED]> wrote: Hi, Is anyone know that errors generated by php (like Notice: Uninitialized string offset: 0 in ...) may

[PHP] Php Error Output Redirection

2006-12-18 Thread Sancar Saran
Hi, Is anyone know that errors generated by php (like Notice: Uninitialized string offset: 0 in ...) may stored in a php variable and print out later ? I want to put them some other location and show them in a debug window. I do this for my error reporting and I could not manage how to do with

Re: [PHP] PHP error log

2006-04-20 Thread Richard Lynch
On Thu, April 20, 2006 7:42 am, Weber Sites LTD wrote: > I'm using PHP 4.4.0 (cli) and all of the errors / warnings are written > to > file. > I can see all of the direct errors but when I have an error inside an > include > file the script fails and the error is not shown in the log. I have to > "

RE: [PHP] PHP error log

2006-04-20 Thread Weber Sites LTD
ROTECTED] Sent: Thursday, April 20, 2006 5:15 PM To: Weber Sites LTD Cc: php-general@lists.php.net Subject: Re: [PHP] PHP error log Run the include file separately and see if it produces an error. Also make sure that if you have "short open tags=OFF" that your include file uses normal tags.

Re: [PHP] PHP error log

2006-04-20 Thread Wolf
Run the include file separately and see if it produces an error. Also make sure that if you have "short open tags=OFF" that your include file uses normal tags. Code normally helps. Wolf Weber Sites LTD wrote: > Hi > > I'm using PHP 4.4.0 (cli) and all of the errors / warnings are written to >

Re: [PHP] PHP error log

2006-04-20 Thread Martin Alterisio \"El Hombre Gris\"
Please, explain how are you logging the errors. Weber Sites LTD wrote: Hi I'm using PHP 4.4.0 (cli) and all of the errors / warnings are written to file. I can see all of the direct errors but when I have an error inside an include file the script fails and the error is not shown in the log. I

RE: [PHP] PHP error log

2006-04-20 Thread Ing. Edwin Cruz
@lists.php.net CC: [EMAIL PROTECTED] Asunto: [PHP] PHP error log Hi I'm using PHP 4.4.0 (cli) and all of the errors / warnings are written to file. I can see all of the direct errors but when I have an error inside an include file the script fails and the error is not shown in the log. I have to &

[PHP] PHP error log

2006-04-20 Thread Weber Sites LTD
Hi I'm using PHP 4.4.0 (cli) and all of the errors / warnings are written to file. I can see all of the direct errors but when I have an error inside an include file the script fails and the error is not shown in the log. I have to "guess" Where the error is. Any idea what I'm missing. Thanks B

FW: [PHP] php error reporting problem

2006-03-30 Thread Ford, Mike
-Original Message- From: ngwarai zed [mailto:[EMAIL PROTECTED] Sent: 30 March 2006 13:36 I am using Fedora core 4. yes I stopped and restarted apache On 3/30/06, Ford, Mike wrote: On 29 March 2006 15:25, ngwarai zed wrote: > phpinfo says > > Configuration File (php.ini) Path /

RE: [PHP] php error reporting problem

2006-03-30 Thread Ford, Mike
On 29 March 2006 15:25, ngwarai zed wrote: > phpinfo says > > Configuration File (php.ini) Path /etc/php.ini > > And the file I am editing is /etc/php.ini Is this not the > one Iam supposed to edit? On list please! H'mmm -- file permissions? You've stopped and restarted Apache? Which oper

Re: [PHP] php error reporting problem

2006-03-29 Thread Christopher Murtagh
On Wed, 2006-03-29 at 16:38 +0300, ngwarai zed wrote: > I tried changing display_errors = On and error_reporting = On in > php.ini , restarted httpd but when I check with phpinfo() I still see > display_errors set to Off and error_reporting set to 2047. My php > script still does not show any error

Re: [PHP] php error reporting problem

2006-03-29 Thread Christopher Murtagh
On Wed, 2006-03-29 at 18:25 +0300, ngwarai zed wrote: > But still the problem is not solved. Just to recap on the problem: I > just want the deliberate php errors Imake to shown as errors on the > php page when the script runs. Yes, that should be the normal behaviour. Check your error_reporting s

Re: [PHP] php error reporting problem

2006-03-29 Thread ngwarai zed
Thanks Christopher for your help. I followed you numbered advicestep by step. 1) I verified that there weren't any typo's that were causing fatal problems in my php.ini 2) looked at the output of phpinfo() and verified the location of the php.ini script. /etc/php.ini .This is the file I am modif

RE: [PHP] php error reporting problem

2006-03-29 Thread Ford, Mike
> -Original Message- > From: ngwarai zed [mailto:[EMAIL PROTECTED] > Sent: 29 March 2006 14:39 > To: Christopher Murtagh > The problem is I know what the error is. What I want is for > the error to be shown when I run the script not to be just > written to the error log. I tried changin

Re: [PHP] php error reporting problem

2006-03-29 Thread ngwarai zed
I checked the apache error log and the error is written there just as I expected like below. [client 127.0.0.1] PHP Parse error: parse error, unexpected T_STRING, expecting ',' or ';' on line 90, referer: http://localhost/form.html The problem is I know what the error is. What I want is for th

Re: [PHP] php error reporting problem

2006-03-28 Thread Paul Novitski
At 10:57 AM 3/28/2006, ngwarai zed wrote: hi, I omitted a semicolon ; at the end of a php statement on purpose to see what the error looks like. I ran the script and a blank page just came out.No error message. I then edited php.ini and set Display_errors = On and errror_reporting = E_ALL then

Re: [PHP] php error reporting problem

2006-03-28 Thread John Nichel
ngwarai zed wrote: hi, I omitted a semicolon ; at the end of a php statement on purpose to see what the error looks like. I ran the script and a blank page just came out.No error message. I then edited php.ini and set Display_errors = On and errror_reporting = E_ALL then restarted httpd. Ran t

[PHP] php error reporting problem

2006-03-28 Thread ngwarai zed
hi, I omitted a semicolon ; at the end of a php statement on purpose to see what the error looks like. I ran the script and a blank page just came out.No error message. I then edited php.ini and set Display_errors = On and errror_reporting = E_ALL then restarted httpd. Ran the script again and

[PHP] php error message

2005-11-17 Thread Edward Martin
I am new to working with php and I am having trouble trying to figure out this following "error" message that is displayed when I access a php file. Can you tell me what this error message means (in plain English) and what steps I might take to correct it? "Warning: Cannot modify header informatio

Re: [PHP] PHP error tracking on new server

2005-08-09 Thread Lawrence Kennon
- Original Message - From: "Terry Romine" <[EMAIL PROTECTED]> To: Sent: Sunday, August 07, 2005 10:03 AM Subject: [PHP] PHP error tracking on new server ... The problem is that when an error occurs, the page just comes up blank, Does your hosting service give y

Re: [PHP] PHP error tracking on new server

2005-08-07 Thread Marco Tabini
Hey Terry-- On 8/7/05 11:03 AM, "Terry Romine" <[EMAIL PROTECTED]> wrote: > > Any ideas on what flag may need to be set and how to do it on a file- > by-file basis so I am only tweaking it when testing? > > Terry Does your hosting provider support .htaccess? If so, you may be able to change th

[PHP] PHP error tracking on new server

2005-08-07 Thread Terry Romine
My hosting service recently switched to a newer server and in transporting the websites (many) over, they set up php different (vers 4.3.10). I know it's not "nice" to show errors on a published website, but I don't have a testing server, and I need to debug scripts once in a while. The pro

Re: [PHP] PHP error on form

2005-07-28 Thread -k.
--- Bruce Gilbert <[EMAIL PROTECTED]> wrote: > Hello, > > I am trying to get a form to work integrating html > with PHP. I see a couple problems... This line: > if ($POST['sender_email'] =="") { Should probably be: if ($_POST['sender_email'] =="") { Note the underscore in $_POST

RE: [PHP] PHP error on form

2005-07-28 Thread Mike Johnson
From: Bruce Gilbert [mailto:[EMAIL PROTECTED] > Hello, > > I am trying to get a form to work integrating html with PHP. > > the code I have is: > > $form_block = " > > Your Name:< /br> > > < /br> > > Message:< /br> > > > Form\"> > "; > > if ($_POST['op'] !="ds") { > // they need to see

RE: [PHP] PHP error on form

2005-07-28 Thread Jay Blanchard
[snip] and the error I get is: Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /hsphere/local/home/bruceg/inspired-evolution.com/Contact_Form_test.php on line 58 [/snip] I forgot to say that the code you sent does not include 58

RE: [PHP] PHP error on form

2005-07-28 Thread Jay Blanchard
[snip] Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /hsphere/local/home/bruceg/inspired-evolution.com/Contact_Form_test.php on line 58 [/snip] Send us the first 60 or so lines of the code and we'll see what we can see. I strong

[PHP] PHP error on form

2005-07-28 Thread Bruce Gilbert
Hello, I am trying to get a form to work integrating html with PHP. the code I have is: Your Name:< /br> < /br> Message:< /br> "; if ($_POST['op'] !="ds") { // they need to see the form echo "$form_block"; } else if ($_POST['op'] =="ds") { //check value of $_POST['sender name'] if ($_POST

[PHP] php error

2005-02-16 Thread Stefan
Hi I've a strange problem When I try to send a form with method="POST" to a php-file I always get an HTTP 404 error. I really don't know why, because the file exists on the server. I use IIS 5.1 Tnx. Stefan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

Re: [PHP] Php error with MySql

2005-01-07 Thread Wil Hitchman
Apologies...just have had loose fingers - Original Message - From: "Jay Blanchard" <[EMAIL PROTECTED]> To: "Wil" <[EMAIL PROTECTED]>; Sent: Thursday, January 06, 2005 3:31 PM Subject: RE: [PHP] Php error with MySql [snip] ...stuff... Wil [/snip] I

Re: [PHP] Php error with MySql

2005-01-07 Thread Stan F
- Original Message - From: "Wil" <[EMAIL PROTECTED]> To: Sent: Thursday, January 06, 2005 9:35 PM Subject: [PHP] Php error with MySql > I get the following error > > Warning: mysql_num_rows(): supplied argument is not a valid MySQL result > resource

Re: [PHP] Php error with MySql

2005-01-06 Thread Janet Valade
Wil wrote: I get the following error Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/wilmail/public_html/elblog.php on line 7 &n=& //error ends here with the following bit of code $qResult = mysql_query ("SELECT * FROM blog_entries ORDER BY id DESC"); $n

Re: [PHP] Php error with MySql

2005-01-06 Thread Richard Lynch
Wil Hitchman wrote: > I get the following error > > Warning: mysql_num_rows(): supplied argument is not a valid MySQL result > resource in /home/wilmail/public_html/elblog.php on line 7 > &n=& //error ends here > > with the following bit of code > > $qResult = mysql_query ("SELECT * FROM blog_ent

Re: [PHP] Php error with MySql

2005-01-06 Thread Brian Tully
sounds like there's something up with the query, perhaps the wrong table name. as a debugging method I usually use the die() clause when performing a query so I can ensure the query is correct. try using this: $qResult = mysql_query ("SELECT * FROM blog_entries ORDER BY id DESC") or die("could n

RE: [PHP] Php error with MySql

2005-01-06 Thread Jay Blanchard
[snip] ...stuff... Wil [/snip] I replied to this over an hour ago, please do not repost. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Php error with MySql

2005-01-06 Thread John Nichel
Wil Hitchman wrote: I get the following error Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/wilmail/public_html/elblog.php on line 7 &n=& //error ends here with the following bit of code $qResult = mysql_query ("SELECT * FROM blog_entries ORDER BY i

Re: [PHP] Php error with MySql

2005-01-06 Thread John Holmes
> From: "Wil Hitchman" <[EMAIL PROTECTED]> > > I get the following error > > Warning: mysql_num_rows(): supplied argument is not a valid MySQL result > resource in /home/wilmail/public_html/elblog.php on line 7 > &n=& //error ends here > > with the following bit of code > > $qResult = mysql

RE: [PHP] Php error with MySql

2005-01-06 Thread Jay Blanchard
[snip] I get the following error Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/wilmail/public_html/elblog.php on line 7 &n=& //error ends here with the following bit of code $qResult = mysql_query ("SELECT * FROM blog_entries ORDER BY id DESC"); $

[PHP] Php error with MySql

2005-01-06 Thread Wil
I get the following error Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/wilmail/public_html/elblog.php on line 7 &n=& //error ends here with the following bit of code $qResult = mysql_query ("SELECT * FROM blog_entries ORDER BY id DESC"); $nRows =

[PHP] Php error with MySql

2005-01-06 Thread Wil
I get the following error Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/wilmail/public_html/elblog.php on line 7 &n=& //error ends here with the following bit of code $qResult = mysql_query ("SELECT * FROM blog_entries ORDER BY id DESC"); $nRows =

[PHP] Php error with MySql

2005-01-06 Thread Wil Hitchman
I get the following error Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/wilmail/public_html/elblog.php on line 7 &n=& //error ends here with the following bit of code $qResult = mysql_query ("SELECT * FROM blog_entries ORDER BY id DESC"); $nRows

Re: [PHP] [php] error in manual?

2004-07-20 Thread Philip Olson
Yes you're correct, this was fixed about a week ago and will show up when the manual is next built (which should be soon), here's the diff: http://cvs.php.net/diff.php/phpdoc/en/language/oop5/visibility.xml?r1=1.2&r2=1.3 When you find errors like this be sure to file a doc bug report at bugs.php

[PHP] [php] error in manual?

2004-07-20 Thread Nick W
On the page http://www.php.net/manual/en/language.oop5.visibility.php the first part reads: The visibility of a member or method can be defined by prefixing the declaration with the keywords: public, protected or private. Public declared items can be allow access to any caller. Protected limit

RE: [PHP] PHP error catching....

2004-07-20 Thread Will Collins
Error handlers? Plus, you can set up PHP to log errors to a file in 'php.ini'... -Original Message- From: Scott Fletcher [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 9:48 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP error catching What are those php functions

Re: [PHP] PHP error catching....

2004-07-20 Thread Scott Fletcher
>[re-snip] >I can't remember what I did 6 to 8 months ago. >[/re-snip] >/* commenting is your friend */ I definitely agree with you on that... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP error catching....

2004-07-20 Thread Jonathan Haddad
error_reporting( E_NONE )? Jon Scott Fletcher wrote: Close, but still not quite it. I can't remember what I did 6 to 8 months ago. I do remember that it was written to temporary suppress the php error while the other part of the php script can be allow to execute before unsupressing the php error

RE: [PHP] PHP error catching....

2004-07-20 Thread Jay Blanchard
[snip] Close, but still not quite it. I can't remember what I did 6 to 8 months ago. I do remember that it was written to temporary suppress the php error while the other part of the php script can be allow to execute before unsupressing the php error. I do not meant the "@" part.. It was a fun

Re: [PHP] PHP error catching....

2004-07-20 Thread Curt Zirzow
* Thus wrote Scott Fletcher: > Close, but still not quite it. I can't remember what I did 6 to 8 months > ago. I do remember that it was written to temporary suppress the php error > while the other part of the php script can be allow to execute before > unsupressing the php error. I do not mean

Re: [PHP] PHP error catching....

2004-07-20 Thread Scott Fletcher
Close, but still not quite it. I can't remember what I did 6 to 8 months ago. I do remember that it was written to temporary suppress the php error while the other part of the php script can be allow to execute before unsupressing the php error. I do not meant the "@" part.. It was a function w

Re: [PHP] PHP error catching....

2004-07-20 Thread Jason Wong
On Tuesday 20 July 2004 22:48, Scott Fletcher wrote: > What are those php functions that catch the PHP errors, not display it and > do something to it while the user load a webpage. I don't remember what > those are. :-( manual > Error Handling and Logging Functions -- Jason Wong -> Greml

Re: [PHP] PHP error catching....

2004-07-20 Thread Curt Zirzow
* Thus wrote Scott Fletcher: > What are those php functions that catch the PHP errors, not display it and > do something to it while the user load a webpage. I don't remember what > those are. :-( It sounds like you're looking for http://php.net/set_error_handler Curt -- First, let me a

Re: [PHP] PHP error catching....

2004-07-20 Thread Philip Olson
> What are those php functions that catch the PHP errors, not display it and > do something to it while the user load a webpage. I don't remember what > those are. :-( Look around set_error_handler() Regards, Philip -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] PHP error catching....

2004-07-20 Thread Scott Fletcher
What are those php functions that catch the PHP errors, not display it and do something to it while the user load a webpage. I don't remember what those are. :-( FletchSOD -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Error

2004-02-21 Thread John Nichel
Tim Trimble wrote: Can anyone tell me what linux and php is asking for here, this dir. and file is at this location, and chmoded to 755. Failed opening required './libraries/grab_globals.lib.php' (include_path='.:/php/includes:/usr/share/php') I guess what I'm asking is, it says the path is ".:/

[PHP] PHP Error

2004-02-21 Thread Tim Trimble
Can anyone tell me what linux and php is asking for here, this dir. and file is at this location, and chmoded to 755. Failed opening required './libraries/grab_globals.lib.php' (include_path='.:/php/includes:/usr/share/php') I guess what I'm asking is, it says the path is ".:/php/includes" I c

[PHP] PHP Error

2004-02-21 Thread Tim Trimble
May be the cause is, that you've specified some include file with include('somefile'); but the file doesn't exist in /usr/share/php dir, which is the default path for include (.inc) files to be saved. OK, I see your point. The problem is I don't know what file/ directory it's looking for, so I d

Re: [PHP] PHP error logs?

2003-10-20 Thread Robert Cummings
On Mon, 2003-10-20 at 16:34, Joseph Bannon wrote: > Where are the PHP error logs kept? In the PHP error log file. Cheers, Rob. Ps. See your php.ini for the appropriate setting: error_log ;) -- .. | InterJinn Application Framework - ht

[PHP] PHP error logs?

2003-10-20 Thread Joseph Bannon
Where are the PHP error logs kept? Thanks, J. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php error log : productinfo finished message

2003-07-30 Thread Curt Zirzow
* Thus wrote Merlin ([EMAIL PROTECTED]): > > most likely a php script is using syslog() to report that > > 'ProductInfo finished'. > > what is syslog and which ProductInfo? Can you be more specific? syslog() is a phpfunction that allows php script to write to the phplog file. http://php.net/sysl

Re: [PHP] php error log : productinfo finished message

2003-07-30 Thread Merlin
> most likely a php script is using syslog() to report that > 'ProductInfo finished'. what is syslog and which ProductInfo? Can you be more specific? Thanx, merlin --