Upgrade from 1.2.4 to 1.2.5 using SVN on linux
Posted: Fri May 14, 2010 12:58 pm
Hi,
Just thought I would share the basic procedure to upgrade from version 1.2.4 to 1.2.5 on a linux:
If you dont have subversion installed yet.. you can do it like this (in Ubuntu)
(note you may have to sudo these commands)
Backup your current version. I have the folder as xataface just to make updates easier
Checkout the 1.2.5 version.. this creates a folder called 1.2.5 ...
Rename it to xataface
Get your modules.. (do the same for other folders for any other custom changes...
Hope it works for you!
Olivier
Just thought I would share the basic procedure to upgrade from version 1.2.4 to 1.2.5 on a linux:
If you dont have subversion installed yet.. you can do it like this (in Ubuntu)
- Code: Select all
sudo apt-get install subversion
(note you may have to sudo these commands)
Backup your current version. I have the folder as xataface just to make updates easier
- Code: Select all
cp -r xataface xataface-1.2.4
Checkout the 1.2.5 version.. this creates a folder called 1.2.5 ...
- Code: Select all
svn co http://weblite.ca/svn/dataface/core/tags/1.2.5/
Rename it to xataface
- Code: Select all
mv 1.2.5 xataface
Get your modules.. (do the same for other folders for any other custom changes...
- Code: Select all
cp -r xataface-1.2.4/modules/* xataface/modules
Hope it works for you!
Olivier