Hi, @brmjem
Could you please resend the email ?
ww.wp.xz.cn didn’t send that email. If any mail was send it was from the server your site is hosted on, so we can’t send that.
But usually this solution works: try manually resetting your plugins (no Dashboard access required) using one of the two methods listed below (also described here). If that resolves the issue, reactivate each one individually until you find the cause.
1. Reset your plugins folder via FTP or the file manager provided in your host’s control panel. This method preserves plugin options but requires plugins be manually reactivated.
- Navigate to the
wp-contents folder
- Rename the folder
plugins in it to plugins.hold
- Login to your WordPress then go to Dashboard > Plugins
yourdomain.com/wp-admin/plugins.php – this will disable any plugin that is “missing”, so all of them.
- Then, rename
plugins.hold back to plugins and activate in Dashboard all the plugins except the one causing troubles
2. Use phpMyAdmin to deactivate all plugins.
- In the table wp_options, under the option_name column (field) find the
active_plugins row
- Change the
option_value field to: a:0:{}. This will deactivate all plugins.
- Then from Dashboard you need to reactivate all plugins, except the one causing you troubles
If that does not resolve the issue, access your server via SFTP or FTP, or a file manager in your hosting account’s control panel, navigate to /wp-content/themes/ and rename the directory of your currently active theme. This will force the default theme to activate and hopefully rule-out a theme-specific issue (theme functions can interfere like plugins).
Hope this helps,
Kind regards!
The quickest way to know why WordPress is throwing this error or what’s causing the problem. Edit your wp-config.php from WordPress’s root folder then follow final steps on this post below.
Turn on debug mode so you can find more details about the issues you are facing. Try to find errors log in your FTP that can also guide you about problem.
//Turn on Debug Mode.
//Find following like in wp-config.php and replace FALSE with TRUE
//FIND
define(‘WP_DEBUG’, false);
//And replace with
define(‘WP_DEBUG’, true);
-
This reply was modified 5 years, 4 months ago by
rocio25.
-
This reply was modified 5 years, 4 months ago by
Yui. Reason: spam links removed