Hi,
Due to a recent attempted crack scare, I had to upgrade all my websites to Joomla 1.0.10 (latest stable version, as of writing this). You article was very helpful in providing the steps needed to be taken in this process - thanks!
Since I found the parts about backing up and patching to be tedious, I thought I'd elaborate on it for other newbies like me :).
Doing the back up and patch with an FTP program like SmartFTP can be tedious and riddled with errors.. so, I turned to Unix commands instead. Of course, this applies to me only because we are hosted on a unix based dedicated server and have shell access. Also, please note that these commands are only to give you an idea.. please modify them according to your needs.
1. Backup folders using tar:Quote:
tar -cvzf filename.tar.gz administrator cache components editor help includes language mambots media modules templates
note that I am selectively backing up folders and omitting heavy folders like downloads, or images etc. since I usually have local copies of these anyways.
2. Backup files in the root directory using FTP (simpler)For this I just create a folder called root_dir_files on my local disk and copy files from the joomla root directory over here.
3. Overwrite patch filesAfter downloading the appropriate patch archive (tar.gz in my case) from the forge, I upload the archive to the joomla root directory and rename it to something simple.. like Joomla.tar.gz and then use this command to patch overwrite.
Quote:
tar --overwrite -xvzf Joomla.tar.gz
Once again, please note that the above sequence is useful for me only because i usually have heavy images and downloads directories (> 500MB) and it is better to leave them out and tar folders selectively. This introduces the extra step of copying files from the joomla root.
Hope this helps...
-V