Maximum execution time of 60 seconds exceeded in common.inc - Drupal + Linux
When you are working on Drupal in your local installation some times you get :Fatal error: Maximum execution time of 30/60 seconds exceeded on your browser.
I also got that issue and what I did, I added this code block in my settings.php.
1) open your settings.php (sites / all / default/settings.php)
2) add this code for PHP settings: line number between 147 - 168
ini_set('max_execution_time', 0);
Comments
Post a Comment