I would like to know how to increase the PHP execution time from 30 sec to more. I get error when i cut and paste some contents for blogs or articals.
Where i can increase PHP execution time??
Thank you.
I would like to know how to increase the PHP execution time from 30 sec to more. I get error when i cut and paste some contents for blogs or articals. Where i can increase PHP execution time?? Thank you. |
If your server supports it and your hosting company allows, this can be done by changing the file php.ini . Find this line: max_executi alt= 30 ; and change the number 30 with any suitable. For instructions of where the file is you must contact your hosting provider. Cheers, NickL |
Check your phpinfo in your admin panel > tools > host tools to see if it takes effect. :-) |
Use set_time_limit function in your header.inc.php file, place the below line of code right after the PHP opening tag ( <? ) set_time_limit(0); Looking for Help? http://www.boonex.com/kevinmitnick |