Re: [PHP-DB] How to stop the server timing out

2006-10-04 Thread Szymon Fornal
hmm, you can edit your php.ini there is max_execution_time or in header of your php file put *ini_set* ( max_execution_time, string newvalue ) Bastien Koert napisaƂ(a): You need to just start adding echo statements to the code to see where the hang up is Bastien From: David Skyers [EMAIL

Re: [PHP-DB] How to stop the server timing out

2006-10-04 Thread OKi98
Hi, Is there anything I can do, to get the page to run completely sure, contact the hosting company to prolong the maximum execution time on that script or speed up how the page works maybe, but I dont see the source code The page does a select from a table and inserts the data into

RE: [PHP-DB] How to stop the server timing out

2006-10-04 Thread David Skyers
Hi, Thanks, the echos causes the page to responds after each insert, so the server no longer times out. David -Original Message- From: Bastien Koert [mailto:[EMAIL PROTECTED] Sent: 04 October 2006 03:24 To: David Skyers; php-db@lists.php.net Subject: RE: [PHP-DB] How to stop

Re: [PHP-DB] How to stop the server timing out

2006-10-03 Thread Niel Archer
Hi, when you say the 'server' times out, do you mean the script reaches it's execution limit (usually around 60 seconds). If that is the case and you have no control over the PHP environment, then there is little you can do to help. The only thing you can do in this situation is to improve the

RE: [PHP-DB] How to stop the server timing out

2006-10-03 Thread Bastien Koert
You need to just start adding echo statements to the code to see where the hang up is Bastien From: David Skyers [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] How to stop the server timing out Date: Tue, 3 Oct 2006 11:51:30 +0100 Hi, I have written a php page and every time