在wordpress管理面板中,在外观 - 菜单项下工作正常。突然,这个菜单项停止了工作。我在管理面板中收到以下错误
Fatal error: Maximum execution time of 60 seconds exceeded in /public_html/wp-content/plugins/sitepress-multilingual-cms/classes/query-filtering/wpml-query-filter.class.php on line 248
Warning: Invalid argument supplied for foreach() in /public_html/wp-includes/class-wp-hook.php on line 277
Warning: Invalid argument supplied for foreach() in /public_html/wp-includes/class-wp-hook.php on line 277
Warning: Invalid argument supplied for foreach() in /public_html/wp-includes/class-wp-hook.php on line 277
有人可以帮忙解决这个问题吗?
答案 0 :(得分:0)
这似乎是一个WPML问题。
将max_execution_time设置为300(即5分钟),看它是否有效。
您可以使用php_value max_execution_time 300
在.htaccess文件中进行设置。
或者你可以用PHP做到:ini_set('max_execution_time', 300);
答案 1 :(得分:0)
ini_set('max_execution_time',300);
将它放在PHP脚本的顶部,让脚本松散! this link
并设置.htaccess文件:php_value max_execution_time 300