Drupal – Maximum execution time of 30 seconds exceeded

If you encounter this error in Drupal

  • Fatal error: Maximum execution time of 30 seconds exceeded …

 

It is caused by PHP settings, you can either modify the max_execution_time in php.ini or add the following lines in the Drupal settings.php.

...
ini_set('max_execution_time', 0);
...

 

Done =)

Reference: Drupal Forum – Maximum execution time of 30 seconds exceeded in…

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.