If your WordPress backend options are not showing, Screen Options tab isn’t expanding, or the update-core.php page is redirecting to Page Not Found, you’re dealing with a common WordPress admin issue.
This usually happens because of missing or corrupted WordPress core files, plugin conflicts, or JavaScript errors in the admin area. Follow this detailed guide to fix all these backend issues step by step.
Missing or corrupted core files like update-core.php
, common.js
, or other admin JavaScript files can break backend functionality.
How to Fix:
/wp-admin
/wp-includes
wp-content
or wp-config.php
files.✅ This will fix:
After this step, refresh your dashboard — most likely, your backend will start functioning normally again.
Sometimes plugins like Wordfence Security, or caching plugins interfere with WordPress admin scripts.
Fix:
If the issue occurs when activating Wordfence or Yoast SEO, disable the Wordfence firewall (set it to Learning Mode) or clear Yoast’s cache and update it to the latest version.
Cache or minify plugins can sometimes break the backend’s JavaScript files, causing menus and tabs not to work.
Fix:
Improper file permissions can prevent WordPress from loading scripts correctly.
Fix:
755
644
You can correct them through your hosting File Manager or FTP client.
Low PHP memory can cause backend functions to stop mid-load.
Fix:
wp-config.php
file.define('WP_MEMORY_LIMIT', '512M');
Debugging helps pinpoint exactly what’s causing backend failures.
Fix:
wp-config.php
: define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
/wp-content/debug.log
to check for error messages related to missing files or plugin conflicts.If your WordPress update-core.php page still shows “Page Not Found,” the file is likely missing or damaged.
Fix:
/wp-admin/update-core.php
./wp-admin/update-core.php
again.Ensure your WordPress and PHP versions are up to date for best compatibility.
Recommended Versions:
Update these via your hosting control panel or ask your hosting provider.
If your Screen Options or Help tabs aren’t expanding, or your update-core.php page shows “Page Not Found,” the issue almost always comes down to:
By restoring your WordPress core files, checking for plugin conflicts, and increasing your memory limit, you can fix all these backend issues quickly and safely.
It happens when core admin scripts like common.js
fail to load due to missing files or JavaScript conflicts caused by plugins.
This occurs when jQuery or WordPress admin scripts are blocked or not loaded correctly, usually by caching or security plugins.
The update-core.php
file is missing or damaged. Upload it again from a fresh WordPress package.
Always take full backups before updates, use compatible plugins, and never delete or modify WordPress core files manually.
POST A COMMENT