Where to download Tikiwiki (using SVN or CVS or nightly zip file)
Download
This page includes information for obtaining the latest TikiWiki code.- The current released Tikiwiki version can be downloaded from SourceForge.net
.
- Pre-release code can be downloaded from the SVN or CVS repository.
There are four methods to download the latest TikiWiki code:
Table of contents
Old CVS (1.9x)
[+]Using stable from SVN (2.x)
Use these steps to download the latest Tikiwiki 2.x from SVN:- Checkout the code.
Checking out with SVN
svn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/branches/2.0
Using the above command will checkout Tikiwiki to a folder with the same name as the last part of the checkout command (in this case 2.0). If you wish to checkout to the current directory, just add "." to the end of the command line:Checking out to a Different Foldersvn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/branches/2.0 .
The other instructions on this page only checkout the tw code, not any mods you have intalled or want to install. If you want to checkout latest files for Mods
, then you have to separately use:
Checking out Mods with SVNsvn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/mods/trunk/ ./mods
Things in tw are changing rapidly. You may need to pick up your mod from http://tikiwiki.svn.sourceforge.net/
and navigate down to mods > wiki-plugins. If you install the mod by hand like this, you need to put the .php file in ./lib/wiki-plugins/ (see also the ./fixperms.sh fix step herein).
- Update from SVN.
Updating with SVN to HEAD is easy. Navigate to the directory that has your checkout, and type:svn update
- Update SVN to a specific revision.
To update your source to a specific revision, use:Updating to a Revisionsvn update -r REVISION
- These "svn update" instructions do not pick up any mods you might have installed. You need to checkout your mods separately. See the preceding section for those instructions.
- Fixing ACLs.
After updating your tw and mods, you may wish to run ./fixperms.sh to change the updated file ownerships and permissions. To do so, use:Fixing ACLssh ./fixperms.sh fix
- Commit your code.
See How to get commit access for information on contributing code and joining the TikiWiki developer community.Before you Commitsvn diff
When you are Readysvn commit -m "message for commit log" nameoffile.php templates/nameoffile.tpl
You can also see simpler instructions just to commit
Using 3.x from SVN (3.x)
Use these steps to download the latest Tiki 3.x from SVN:- Checkout the code.
Checking out with SVN
svn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/branches/3.0
Using the above command will checkout Tikiwiki to a folder with the same name as the last part of the checkout command (in this case 3.0). If you wish to checkout to the current directory, just add "." to the end of the command line:Checking out to a Different Foldersvn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/branches/3.0 .
The other instructions on this page only checkout the tw code, not any mods you have intalled or want to install. If you want to checkout latest files for Mods
, then you have to separately use:
Checking out Mods with SVNsvn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/mods/trunk/ ./mods
Things in tw are changing rapidly. You may need to pick up your mod from http://tikiwiki.cvs.sourceforge.net/
and navigate down to mods > wiki-plugins. If you install the mod by hand like this, you need to put the .php file in ./lib/wiki-plugins/ (see also the ./fixperms.sh fix step herein).
- Update from SVN.
Updating with SVN to HEAD is easy. Navigate to the directory that has your checkout, and type:svn update
- Update SVN to a specific revision.
To update your source to a specific revision, use:Updating to a Revisionsvn update -r REVISION
- These "svn update" instructions do not pick up any mods you might have installed. You need to checkout your mods separately. See the preceding section for those instructions.
- Fixing ACLs.
After updating your tw and mods, you may wish to run ./fixperms.sh to change the updated file ownerships and permissions. To do so, use:Fixing ACLssh ./fixperms.sh fix
- Commit your code.
See How to get commit access for information on contributing code and joining the TikiWiki developer community.Before you Commitsvn diff
When you are Readysvn commit -m "message for commit log" nameoffile.php templates/nameoffile.tpl
You can also see simpler instructions just to commit
Using Dev branch from SVN (trunk) (future 4.x)
Use these steps to download the latest Tikiwiki 4.x from SVN:- Checkout the code.
Checking out with SVN
svn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/trunk
Using the above command will checkout Tikiwiki to a folder with the same name as the last part of the checkout command (in this case trunk). If you wish to checkout to the current directory, just add "." to the end of the command line:Checking out to a Different Foldersvn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/trunk .
The other instructions on this page only checkout the tw code, not any mods you have intalled or want to install. If you want to checkout latest files for Mods
, then you have to separately use:
Checking out Mods with SVNsvn co https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/mods/trunk/ ./mods
Things in tw are changing rapidly. You may need to pick up your mod from http://tikiwiki.cvs.sourceforge.net/
and navigate down to mods > wiki-plugins. If you install the mod by hand like this, you need to put the .php file in ./lib/wiki-plugins/ (see also the ./fixperms.sh fix step herein).
- Update from SVN.
Updating with SVN to HEAD is easy. Navigate to the directory that has your checkout, and type:svn update
- Update SVN to a specific revision.
To update your source to a specific revision, use:Updating to a Revisionsvn update -r REVISION
- These "svn update" instructions do not pick up any mods you might have installed. You need to checkout your mods separately. See the preceding section for those instructions.
- Fixing ACLs.
After updating your tw and mods, you may wish to change the updated file ownerships and permissions in order to secure your TikiWiki. To do so, use:Fixing ACLschmod -R apacheuser:apacheuser *
- Commit your code.
See How to get commit access for information on contributing code and joining the TikiWiki developer community.Before you Commitsvn diff
When you are Readysvn commit -m "message for commit log" nameoffile.php templates/nameoffile.tpl
You can also see simpler instructions just to commit
If you were using SVN (branches/1.10) before 2008-07-10
On 2008-07-10, we branched off. Thus, the old branches/1.10 no longer exists. You must decide if you want to switch to branches/2.0 or to trunk
switch to branches/2.0
svn switch https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/branches/2.0 svn up
switch to branches/3.0
svn switch https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/branches/3.0 svn up
switch to trunk
svn switch https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/trunk svn up
Pre-release packages (zip files)
You can also download a pre-release tarball (ZIP file) that is continually built every six hours. See the .timestamp file to determine the time & date of the tarball.- Future 1.9.x (BRANCH-1-9 from CVS)
- Future 2.x (branches/2.0 from SVN)
- Future 3.x (branches/3.0 from SVN)
- Future 4.x (trunk from SVN)
TikiWiki Remote Instance Manager (TRIM)
Please see TRIMAmazon Machine Image (AMI) for EC2
EC2
Contributors to this page: marclaporte
,
gillesm
,
nyloth
,
ohertel
,
anonymous
,
petej
,
ricks99
,
illori
,
sylvie
,
xavi
,
homunq
,
xavidp
and
mose
.
Page last modified on Wednesday 20 May, 2009 22:53:40 UTC by marclaporte
.
Sidebar
Sidebar
To register
To have an account at this site, please register at Tikiwiki.org
, and then use that user name and password to log in here.
This site gets user information from Tikiwiki.org with the InterTiki feature.
This site gets user information from Tikiwiki.org with the InterTiki feature.
Last Comments