Home > Software design >  Unable to access wordpress page after update
Unable to access wordpress page after update

Time:12-09

I'm facing an error with wordpress. I updated wordpress page by mistake and I'm getting error

The site is experiencing technical difficulties. Please check your site admin email inbox for instructions.

When I try to access the page by admin. I can't revert the change since the unable to access the page from admin. Is there any way to fix this issue.

CodePudding user response:

Kindly clarify your question, you updated one of the pages in your WordPress site or did you update WordPress to the latest version and got an error afterwards when trying to log in within the admin dashboard?

If it is a page you can't access, try disabling your plugins and see if it will be accessible. You can also try to enable WP_Debug to true from within the wp-config.php within your back-end file manager and see if the exact issue will be displayed so as to assist you with further troubleshooting.

Alternatively, if the issue arising is due to a WordPress update to the latest version, you can try renaming the plugins folder temporary from within your backend as a form of troubleshooting, if that fails, temporary rename your theme (/wp-content/themes/theme_name) to try and pinpoint the exact issue. All this can be done with the WordPress folder from cPanel, file manager.

If the above fails, go a step further and try doing stuff like PHP memory increase, post_max_size &c.

If all the above fails, refer to WordPress documentation on how to do a manual WordPress update and hopefully, the issue will be fixed.

Note: The above is just an insight of what you can look into and not a step by step guide to fixing the issue.

  • Related