Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP time limit (max_execution_time):

1- Increasing PHP Time Limit via PHP.ini file

	max_execution_time = 300;

2- Alternative to editing PHP.ini through wp-config.php
  
  	set_time_limit(300);

3- Modifying the .htaccess file
  
  	max_execution 300
 
PREVIOUS NEXT
Tagged: #PHP #time #limit
ADD COMMENT
Topic
Name
2+3 =