WordPress Updates Page Missing WP Version
-
My WordPress site https://www.avondale.edu.sg does not show the WordPress Version on the WordPress Updates Page in the Dashboard. This also means it is not manually possible to update the WordPress Verion.
I have a number of other WordPress sites, but none of them have this issue.
Updates for Plugins and Themes do show and can be updated automatically.
The automatic updates for WordPress DO work – but usually takes a few days for the update to occur after a new version of WordPress is released. I would like to be able to do manually sooner and at a good timing.
I have used Wordfence to scan the files against the WordPress Repository to ensure the core, plugin and theme files are the correct versions.
Here are settings from my wp-config.php:
define(‘WP_DEBUG’, false);
//define( ‘WP_CACHE’, true );
require_once( dirname( __FILE__ ) . ‘/gd-config.php’ );
//define WP Cron – to fix UpdraftPlus Scheduling
define( ‘ALTERNATE_WP_CRON’, true );
//define Direct Filesystem Method to allow WordPress to upload new plugins and themes
define( ‘FS_METHOD’, ‘direct’);
define(‘FS_CHMOD_DIR’, (0705 & ~ umask()));
define(‘FS_CHMOD_FILE’, (0604 & ~ umask()));
define(“WP_MEMORY_LIMIT”, “256M”);
// Enable WordPress Updates
define (‘AUTOMATIC_UPDATER_DISABLED’, false);/* That’s all, stop editing! Happy blogging. */
The define(‘AUTOMATIC_UPDATER_DISABLED’, false); ensures that Automatic Updates are not disabled and do occur. Removing that does not cause the WordPress Version to appear on the updates page.
The Dashboard Home shows the WordPress version in the “At a Glance” section and it is WordPress 4.5.2 – currently the latest version, so automatic updates are working.
update.php and update-core.php appear to be the standard files from the WordPress repository.
- The topic ‘WordPress Updates Page Missing WP Version’ is closed to new replies.