RE: [PHP-WIN] looking for php debugging tips

2004-01-07 Thread Svensson, B.A.T. (HKG)
With scripting languages: print is your best friend! Also check out ww.php.net, they gives soem references to some remote debuggers wich seams to be usefull. I haven't tested them yet thou. -Original Message- From: Jim MacDiarmid To: [EMAIL PROTECTED] Sent: 2004-01-08 03:07 Subject: [PHP

RE: [PHP-WIN] Re: Why does php exit after 6 minutes? - SOLVED

2004-01-07 Thread Svensson, B.A.T. (HKG)
We all do our misstakes! :) In any case, this is NOT php related. It has to do with IIS. IIS has about 5 watchdogs one need to take care about. Thanks to a tip from Frank Kromman I were able to nail this one down: The manual on CGI configuration does not say anything about timeouts but there is

php-windows Digest 8 Jan 2004 03:15:14 -0000 Issue 2072

2004-01-07 Thread php-windows-digest-help
php-windows Digest 8 Jan 2004 03:15:14 - Issue 2072 Topics (messages 22512 through 22520): Re: mail() 22512 by: Anthony Ritter 22516 by: Manuel Lemos Re: Why does php exit after 6 minutes? 22513 by: Manuel Vázquez Acosta 22514 by: Frank M. Kromann 225

[PHP-WIN] 500 internal PHP errors - custom error reporting

2004-01-07 Thread Jim MacDiarmid
In ASP/IIS 5.0, there is a way to have a custom error page displayed that will show current environment variables, etc. Is there a way to do this with PHP/Apache 2? Thanks in advance, Jim

[PHP-WIN] looking for php debugging tips

2004-01-07 Thread Jim MacDiarmid
Can anyone help out a newbie or point me in the right direction on properly debugging php code? I'm really having a rough time with this, and things just don't seem to be working the way I'm expecting them to. I'm trying to study this by using the "Teach yourself php, mysql, and apache in 24 hour

[PHP-WIN] the unsubscribe script must be broken...

2004-01-07 Thread Michael Estler
I have been trying to unsubscribe and the thing just won't quit sending me mail... somebody please remove me from the list... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 10:11 AM To: [EMAIL PROTECTED] Subject: php-windows Digest 7

[PHP-WIN] IIS 6 and App Pools

2004-01-07 Thread Bryan Thoreson
Hi, Does anyone have any great suggestions on how to handle the Application Pools in II6 and PHP? Any suggestions would be greatly appreciated. Bryan ~~~ Bryan Thoreson 1/7/2004 Network Administrator CLA OIT  

[PHP-WIN] Re: mail()

2004-01-07 Thread Manuel Lemos
Hello, On 01/07/2004 04:11 AM, Anthony Ritter wrote: Using php/apache/mysql I am testing an mail script. The script has a .html form which receives the text input and then a .php script to execute the variables in a mail() function. When I publish both files - the .html and .php - to my ISP's se

Re: [PHP-WIN] Re: Why does php exit after 6 minutes?

2004-01-07 Thread Manuel Vázquez Acosta
Ops, I was missed up (I did 3600/2 instead 3600/10) Manu. "Frank M. Kromann" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > The last time I checked 1800 seconds was equal to 30 min :-) > > 6 min is 360 seconds. > > - Frank > > > Your configuration imposes the 6 mins limit: > > >

Re: [PHP-WIN] Re: Why does php exit after 6 minutes?

2004-01-07 Thread Frank M. Kromann
The last time I checked 1800 seconds was equal to 30 min :-) 6 min is 360 seconds. - Frank > Your configuration imposes the 6 mins limit: > > > phpinfo(): max_execution_time: 1800s > > phpinfo(): mssql.timeout: 1800s > > So, PHP scripts won't run more than 1800 seconds, ie 6 mins. > > Try

[PHP-WIN] Re: Why does php exit after 6 minutes?

2004-01-07 Thread Manuel Vázquez Acosta
Your configuration imposes the 6 mins limit: > phpinfo(): max_execution_time: 1800s > phpinfo(): mssql.timeout: 1800s So, PHP scripts won't run more than 1800 seconds, ie 6 mins. Try set_time_limit(0); at the beginning of your script to avoid time limitations. Manu. -- PHP Windows Mailing L

Re: [PHP-WIN] mail()

2004-01-07 Thread Anthony Ritter
From: "Mike Brum" <[EMAIL PROTECTED]> > It's very possible that they're not letting you relay through them since > you're not providing any authentication for that mail server but just trying > to send (as far as it can tell) "random mail from an unknown sender"...[snipped] Thanks

php-windows Digest 7 Jan 2004 15:11:10 -0000 Issue 2071

2004-01-07 Thread php-windows-digest-help
php-windows Digest 7 Jan 2004 15:11:10 - Issue 2071 Topics (messages 22510 through 22511): mail() 22510 by: Anthony Ritter 22511 by: Mike Brum Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAI

RE: [PHP-WIN] mail()

2004-01-07 Thread Mike Brum
It's very possible that they're not letting you relay through them since you're not providing any authentication for that mail server but just trying to send (as far as it can tell) "random mail from an unknown sender". The mail server can't tell the difference from your script from that of any ot