RE: [PHP] script execution stops after mail()

2001-08-16 Thread Mukul Sabharwal
> Vincent > > > -Original Message- > From: Mukul Sabharwal > [mailto:[EMAIL PROTECTED]] > Sent: donderdag 16 augustus 2001 13:57 > To: Vincent; [EMAIL PROTECTED] > Subject: Re: [PHP] script execution stops after > mail() > > > Hi, > > Well the PHP

Re: [PHP] script execution stops after mail()

2001-08-16 Thread Mukul Sabharwal
Hi, Well the PHP script is timing out after it executes a no. of (or all the mail() commands). So what you got todo is either set the PHP's timeout limit to 0 or infinite. set_time_limit(0); Or you could invoke another program in the background disconnect PHP (terminal) from it, and voila. But

[PHP] script execution stops after mail()

2001-08-16 Thread Vincent
Hi, I've been skipping a night over this strange error: after execution of a mail() command, de rest of the script just gets ignored and my browser displays a "Cannot find server or DNS Error" page instead. Ideas about how to make this baby work would be very welcome; thanks in advance. I'm usi