Fatal error: Maximum execution time of 30 seconds exceeded-?

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
anaspk
Forum Newbie
Posts: 7
Joined: Wed Mar 25, 2009 1:38 am

Fatal error: Maximum execution time of 30 seconds exceeded-?

Post by anaspk »

i vant to copy a whole column with sum alteration to an other column my records are more than 12,000 all is working well for 1000 record after it dispaly and error:

Fatal error: Maximum execution time of 30 seconds exceeded in D:\wamp\www\Reg\12or.php on line 19
who can i change the execution time i m using wamp 1.57
Darkzaelus
Forum Commoner
Posts: 94
Joined: Tue Sep 09, 2008 7:02 am

Re: Fatal error: Maximum execution time of 30 seconds exceeded-?

Post by Darkzaelus »

either in the php script (example time of 120 seconds):

Code: Select all

ini_set('max_execution_time', 120);
or changing max_execution_time in php.ini.

Cheers,


Darkzaelus
Post Reply