WordPress - 无法登录

-1 wordpress

我正在更新WP并在jut中工作,然后突然无法登录或看到任何东西.这就是我得到的:[twitter]错误:PHP 5.3.0或更高版本要求

Warning: Cannot modify header information - headers already sent by (output started at /home2/keread/public_html/wp-content/plugins/twitter/widget_twitter_vjck.php:77) in /home2/keread/public_html/wp-login.php on line 415

Warning: Cannot modify header information - headers already sent by (output started at /home2/keread/public_html/wp-content/plugins/twitter/widget_twitter_vjck.php:77) in /home2/keread/public_html/wp-login.php on line 427

Warning: Cannot modify header information - headers already sent by (output started at /home2/keread/public_html/wp-content/plugins/twitter/widget_twitter_vjck.php:77) in /home2/keread/public_html/wp-includes/pluggable.php on line 678

Warning: Cannot modify header information - headers already sent by (output started at /home2/keread/public_html/wp-content/plugins/twitter/widget_twitter_vjck.php:77) in /home2/keread/public_html/wp-includes/pluggable.php on line 679

Warning: Cannot modify header information - headers already sent by (output started at /home2/keread/public_html/wp-content/plugins/twitter/widget_twitter_vjck.php:77) in /home2/keread/public_html/wp-includes/pluggable.php on line 680

Warning: Cannot modify header information - headers already sent by (output started at /home2/keread/public_html/wp-content/plugins/twitter/widget_twitter_vjck.php:77) in /home2/keread/public_html/wp-includes/pluggable.php on line 896
Run Code Online (Sandbox Code Playgroud)

Cam*_*urd 8

看起来你的插件之一正在发脾气.

如果你能够访问数据库,我建议在下跌行去激活所有的插件wp_optionsoption_name:active_plugins.

如果您需要,请在此处阅读其他内容!

编辑:来自链接帖子的快速解决方案:

UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
Run Code Online (Sandbox Code Playgroud)

  • 虽然链接可以指导OP解决方案,但它可能对未来的访问者没有帮助(即链接已经死亡).请将提供的链接*中的相关摘录发布到您的答案中. (4认同)
  • 相关信息在答案中.尽管如此,我从帖子中粘贴了一个很好的小查询.感谢您的建议! (2认同)