Skip to main content

How to increase the Maximum Execution Time in Wordpress


How to increase the Maximum Execution Time or How to fix the maximum execution time exceeded fatal error In WORDPRESS


SOLUTION 1 - .htaccess file

Add this line into your htaccess filephp_value max_execution_time 60 //in seconds

 

SOLUTION 2-  wp-config.php File

set_time_limit(300);  //in seconds
 
 

SOLUTION 3 - PHP.ini File

SEARCH AND CHANGE THE VALUE OF IT 
max_execution_time = 120;

 

 


Comments

Post a Comment