admin管理员组文章数量:1302350
Ever since updating WP to the latest version, the admin panel stopped working. Now, every time attempting to access wp admin just shows this error: There has been a critical error on this website. Please check your site admin email inbox for instructions.
There is no email from them. There is no backup (the hosts, on this occasion, don't have one)
Tried:
- Renamed plugin folder - didn’t do anything
- Activated debug mode by editing wp-config file (“WP_DEBUG” true) - didn’t do anything, still showing the same error message
Any advice for fixing this would be much appreciated.
Thanks.
Ever since updating WP to the latest version, the admin panel stopped working. Now, every time attempting to access wp admin just shows this error: There has been a critical error on this website. Please check your site admin email inbox for instructions.
There is no email from them. There is no backup (the hosts, on this occasion, don't have one)
Tried:
- Renamed plugin folder - didn’t do anything
- Activated debug mode by editing wp-config file (“WP_DEBUG” true) - didn’t do anything, still showing the same error message
Any advice for fixing this would be much appreciated.
Thanks.
Share Improve this question edited Mar 19, 2021 at 5:25 Zayne asked Mar 18, 2021 at 5:11 ZayneZayne 11 bronze badge 3 |1 Answer
Reset to default 0- Log in to your hosting.
- Into phpmyadmin
- Select a website database
- Navigate to the wp_options table and open it up.
- Press Ctrl F then find the keyword: active_plugins
- In the options value field of the line active_plugins change to:
- a:0:{}
- Then F5 wp-admin and login.
- Activate each plugin one by one to determine which plugin is causing the error
本文标签: Wordpress critical error (tried plugindebug)
版权声明:本文标题:Wordpress critical error (tried plugin + debug!) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741669078a2391492.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true);
inwp-config.php
, try to open admin panel and then check if there are any messages in thewp-content/debug.log
file. – nmr Commented Mar 18, 2021 at 8:04