TipsCow

Fix for Fatal Error Maximum execution time 30 seconds exceeded WordPress

by aditya bajaj on February 6, 2013

Quick Fix of the PHP Fatal error Maximum execution time 30 seconds exceeded in WordPress. There are three ways. Use either one. Also please backup the files before making changes so that you can revert the same if there are any issues.

Fixing “Maximum execution time 30 seconds exceeded

1. Wp-config.php

set_time_limit(60);

Add this line above “/* That’s all, stop editing! Happy blogging. */” comment.

OR
2. htaccess

php_value max_execution_time 60

OR
3. php.ini

max_execution_time = 30 ;

Leave a Reply

Your email address will not be published. Required fields are marked *