Re: [PHP] Re: Script timeout Problem

2003-12-19 Thread Marek Kilimajer
Haseeb Iqbal wrote: how can i do that? btw the script runs on a local machine but updates the records on a webserver i mean live server. this is also a factor for the timeout. the script was running smoothly for 24000 recods before but now it suddenly timeout after 800records. i dont know what is

Re: [PHP] Re: Script timeout Problem

2003-12-19 Thread Haseeb Iqbal
i tried this but to noavail. anyother sugestion really this problem is really annoying me now Haseeb - Original Message - From: Marek Kilimajer [EMAIL PROTECTED] To: Haseeb Iqbal [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, December 19, 2003 10:23 PM Subject: Re: [PHP] Re: Script

RE: [PHP] Re: Script timeout Problem

2003-12-19 Thread Jay Blanchard
[snip] i tried this but to noavail. anyother sugestion really this problem is really annoying me now [/snip] If it is the script timing out place this at the beginning of the script. (I do this with scripts that update and insert millions of records) set_time_limit(0); See

Re: [PHP] Re: Script timeout Problem

2003-12-19 Thread Marek Kilimajer
Haseeb Iqbal wrote: i tried this but to noavail. anyother sugestion really this problem is really annoying me now Haseeb The browser might be timing out. You should regulary send out some dummy output and flush() -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: Script timeout Problem

2003-12-19 Thread Jas
is heppening Haseeb - Original Message - From: Jas [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 19, 2003 3:16 AM Subject: [PHP] Re: Script timeout Problem Have you tried setting a limit on your MySQL insert and update statements to limit the amount trying to be processed

[PHP] Re: Script timeout Problem

2003-12-18 Thread Jas
Have you tried setting a limit on your MySQL insert and update statements to limit the amount trying to be processed? Haseeb Iqbal wrote: hi, i need to update a mysql table with a dbf file, the dbf file contains more then 16 records. i knew that the script will not be able to update 16

[PHP] Re: Script timeout Problem

2003-12-18 Thread Jas
Let me know if that solves your problem if you would be so kind... I am sure it will but I just want to make sure. Jas Jas wrote: Have you tried setting a limit on your MySQL insert and update statements to limit the amount trying to be processed? Haseeb Iqbal wrote: hi, i need to update a

Re: [PHP] Re: Script timeout Problem

2003-12-18 Thread Haseeb Iqbal
- Original Message - From: Jas [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 19, 2003 3:16 AM Subject: [PHP] Re: Script timeout Problem Have you tried setting a limit on your MySQL insert and update statements to limit the amount trying to be processed? Haseeb Iqbal