Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I have several local WordPress dev environments but, for the moment, a very very slow internet connection. The WordPress auto updater for core is very convenient, but would it possible for it to use update packages from localhost instead of downloading it for every site?

share|improve this question

1 Answer

A list of options, easier ones first.

  1. Run WordPress as a multisite network, you can find instructions here: http://codex.wordpress.org/Create_A_Network

  2. Manually apply changes via .zip file and overwriting.

    • Download latest zip from wordpress.org
    • Make a backup of your file base per install
    • Unpack the zip files then overwrite files in wp-admin and wp-includes.
    • Overwrite root files but make sure you do not change your wp-config.php settings. It's best to compare the new wp-config for any changes that might have been made so you can apply them.
    • Check wp-content for any new changes and apply them (do not overwrite your existing files)
  3. Using Symbolic Links, this isn't easy will probably break stuff.

share|improve this answer
Thanks for the alternatives write up. Was hoping for some "change this line in file.php", although I guess this comes through some wp org api. – BoBoz Dec 16 '12 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.