I apologize, but this is a little confusing for me.
2.6 to 2.7
Backup WPMU
Download WPMU and unpack it into a scratch directory:
e.g. ~/wordpress-mu/
I did this with no problem
Move your wp-config.php and .htaccess files to a temporary directory:
e.g. mkdir ~/temp ; mv ~/www/.htaccess ~/www/wp-config.php ~/temp
Remove all the files in your www directory:
e.g., rm ~/www/*
I also did this.
Copy the new files from your scratch wordpress-mu directory into your www directory:
e.g., cp ~/wordpress-mu/* ~/www
I did this, but got confused. … This copies everything from the unpacked downloaded scratch 2.7. into my WWW folder.
Remove the wp-admin and wp-includes directories:
e.g., rm -rf ~/www/wp-admin ; rm -rf ~/www/wp-includes
Note: Be careful when using the rm command with the -rf flag!
??? This seems to tell me to remove two of the directories that I just put in the WWW folder from the unpacked downloaded scratch 2.7?
Copy the directories from your scratch wordpress-mu directory into your www directory:
e.g. cp -R ~/wordpress-mu/wp-admin ~/www ; cp -R ~/wordpress-mu/wp-includes ~/www
??? This seems to tell me to put exact copies from my scratch folder back into the WWW folder. … ??? Where did I go wrong?
Copy the files wp-content/index.php and wp-content/blogs.php from your scratch wordpress-mu directory into your www directory:
e.g. cp ~/wordpress-mu/wp-content/index.php ~/www/wp-content ; cp ~/wordpress-mu/wp-content/blogs.php ~/www/wp-content
??? This also seems to tell me to put exact copies from my scratch folder back into the WWW folder. … ??? Where did I go wrong?
Copy your wp-config.php and .htaccess files back from your temporary directory into your www directory:
e.g. cp ~/temp/.htaccess ~/temp/wp-config.php ~/www
I have not gotten here yet.