Fatal Error: Maximum execution time of 30 seconds exceeded in c:\wamp\www\drupal2\includes\common.inc on line 551

前端 未结 4 660
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-13 11:55

when I go to admin option in drupal 6. I get following error on my Browser

Fatal Error: Maximum execution time of 30 seconds exceeded in c:\\wamp\\w

4条回答
  •  攒了一身酷
    2021-01-13 12:22

    Something about the 'Views' module is taking longer than 30 secs to process (Line 551). You can try to increase the maximum execution time by adding the following to your php script:

    set_time_limit(int $seconds);
    

    By default php is set to 30 seconds. Using the above command you can increase it incrementally to see if it will run. If you continue to get the same error I would suggest Isolating and fixing the script or uninstalling it.

提交回复
热议问题