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…