Answers for "memory limit of 128 mb and max execution time (php time limit) of 180 seconds."

PHP
1

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
Posted by: Guest on November-27-2021

Code answers related to "memory limit of 128 mb and max execution time (php time limit) of 180 seconds."

Browse Popular Code Answers by Language