Fatal error: Maximum execution time of 30 seconds exceeded
First solution:
Modify php.ini file and set as below:
max_execution_time = 360 ; # Maximum execution time of each script, in seconds //360 seconds = 6 minutes
Second solution:
Add code line at the end of wp-config.php
ini_set('max_execution_time', 360);
Tagi: wampserver, wordpress