I've downloaded the WordPress project from PRODUCTION environment to my LOCAL MACHINE.
I'm not seeing any UPDATE NOW button or links on my LOCAL ENVIRONMENT. Please see the below screenshot
But the UPDATE NOW links are displaying on PRODUCTION environment.Please see the below screenshot
What am I missing. What should I need to get this done ?
I'm using XAMPP.
I've downloaded the WordPress project from PRODUCTION environment to my LOCAL MACHINE.
I'm not seeing any UPDATE NOW button or links on my LOCAL ENVIRONMENT. Please see the below screenshot
But the UPDATE NOW links are displaying on PRODUCTION environment.Please see the below screenshot
What am I missing. What should I need to get this done ?
I'm using XAMPP.
Share Improve this question asked Jun 26, 2015 at 11:45 FeroFero 1011 silver badge2 bronze badges 5 |2 Answers
Reset to default 1Did you migrate from managed wp to unmanaged? Check this page https://ru.godaddy/help/move-a-managed-wordpress-site-to-an-unmanaged-wordpress-account-19798
In the site directory, locate the /wp-content/mu-plugins/ directory, and delete the gd-system-plugin and gd-system-plugin.php files.
In the wp-config.php file, find and remove the reference to gd-config.php. The sample code below from the wp-config.php file shows the general location of the line to delete.
For anyone stumbling across this post with the same problem, I was able to resolve it by removing the /wp-content/mu-plugins/
directory. This seems to be a leftover Godaddy "helper" which my client previously used to install their website.
http://locahost/yoursite/readme.html
in your local and compare with correspondingreadme.html
in production. – Karun Commented Jun 26, 2015 at 12:28define( 'WP_AUTO_UPDATE_CORE', false );
inwp-config.php
file – Karun Commented Jun 26, 2015 at 12:39