Fullscreen
Where to download Tikiwiki (using SVN or CVS or nightly zip file)
Print

Download

This page includes information for obtaining the latest TikiWiki code.
*
Starting with release 2.0, TikiWiki code can be obtained from SVN. The 1.9 branch remains in CVS.

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:

  1. 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 Folder
    svn 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 (external link), then you have to separately use:
    Checking out Mods with SVN
    svn 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/ (external link) 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).

  2. Update from SVN.
    Updating with SVN to HEAD is easy. Navigate to the directory that has your checkout, and type:
    svn update


  3. Update SVN to a specific revision.
    To update your source to a specific revision, use:
    Updating to a Revision
    svn update -r REVISION


  4. 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.

  5. 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 ACLs
    sh ./fixperms.sh fix


  6. Commit your code.
    See How to get commit access for information on contributing code and joining the TikiWiki developer community.
    Before you Commit
    svn diff

    When you are Ready
    svn 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:

  1. 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 Folder
    svn 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 (external link), then you have to separately use:
    Checking out Mods with SVN
    svn 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/ (external link) 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).

  2. Update from SVN.
    Updating with SVN to HEAD is easy. Navigate to the directory that has your checkout, and type:
    svn update


  3. Update SVN to a specific revision.
    To update your source to a specific revision, use:
    Updating to a Revision
    svn update -r REVISION


  4. 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.

  5. 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 ACLs
    sh ./fixperms.sh fix


  6. Commit your code.
    See How to get commit access for information on contributing code and joining the TikiWiki developer community.
    Before you Commit
    svn diff

    When you are Ready
    svn 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:

  1. 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 Folder
    svn 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 (external link), then you have to separately use:
    Checking out Mods with SVN
    svn 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/ (external link) 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).

  2. Update from SVN.
    Updating with SVN to HEAD is easy. Navigate to the directory that has your checkout, and type:
    svn update


  3. Update SVN to a specific revision.
    To update your source to a specific revision, use:
    Updating to a Revision
    svn update -r REVISION


  4. 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.

  5. 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 ACLs
    chmod -R apacheuser:apacheuser *


  6. Commit your code.
    See How to get commit access for information on contributing code and joining the TikiWiki developer community.
    Before you Commit
    svn diff

    When you are Ready
    svn 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.

TikiWiki Remote Instance Manager (TRIM)

Please see TRIM

Amazon Machine Image (AMI) for EC2

EC2

Contributors to this page: marclaporte21258 points  , gillesm23 points  , nyloth571 points  , ohertel165 points  , anonymous8 points  , petej38 points  , ricks99909 points  , illori7 points  , sylvie2073 points  , xavi613 points  , homunq , xavidp508 points  and mose2298 points  .
Page last modified on Wednesday 20 May, 2009 22:53:40 UTC by marclaporte21258 points .

To register

To have an account at this site, please register at Tikiwiki.org (external link), and then use that user name and password to log in here.

This site gets user information from Tikiwiki.org with the InterTiki feature.

Last Comments

  1. more information from sylvie
  2. can not reproduce
  3. i could repeat it
  4. fixed in 2.4 thanks!
  5. seems to work for me

Search a Wiki Page

Exact match

Search Tracker Items Subject

Keywords

The following is a list of keywords that should serve as hubs for navigation within the Tiki development and should correspond to documentation keywords.

Each feature in Tiki has a wiki page which regroups all the bugs, requests for enhancements, etc. It is somewhat a form of wiki-based project management. You can also express your interest in a feature by adding it to your profile. You can also try out the Dynamic filter.

Accessibility (WAI – 508)
Action log 2.x
Administration
Ajax 2.x
Alert 3.x
Articles & Submissions
Backlinks
Backup
Banner
Blog
Bookmark
Browser Compatibility
Cache
Calendar
Category
Charts
Chat
Comment
Communication Center
Compression (gzip)
Consistency
Contacts Address book
Contact us
Content template
Contribution 2.x
Cookie
Copyright
Custom Home (and Group Home Page)
Database independence
Database MySQL
Date and Time
Debugger Console
Directory (of hyperlinks)
Documentation link from Tiki to doc.tikiwiki.org (Help System)
DogFood
Drawing
Dynamic Content
Dynamic Variable
Ephemeride
External Authentication
FAQ
Featured links
File Gallery
Forum
Friendship Network (Community)
Game
Gmap Google maps
Group
Help System
Hotword
HTML Page
i18n (Multilingual, l10n, Babelfish)
Image Gallery
Import-Export
Install
Integrator
Interaction
Inter-User Messages
InterTiki
JS Calendar
Karma
Live Support
Lost edit protection
Magic 3.x
Mail-in
Map with Mapserver
Menu
Meta Tag
Missing features
MindMap 3.x
Mobile Tiki and Voice Tiki
Mods
Module
Mootools 2.x
Multimedia 2.x
MultiTiki
MyTiki
Newsletter
Newsreader
Notepad
OS independence (Non-Linux, Windows/IIS, Mac, BSD)
PDF
Performance Speed / Load
Permission
Poll
Profile Manager
Quicktags
Quiz
Rating
Registration
RSS
Score
Search engine optimization (SEO)
Search
Security
Semantic links
Shoutbox
Site Identity
Slideshow
Smarty Template
Smiley
Spam protection (Anti-bot CATPCHA)
Spellcheck
Spreadsheet
Staging and Approval
Stats
Survey
System log
Tags 2.x
Task
Tell a Friend + Social Bookmarking 2.x
TikiTests 2.x
Theme
Trackers
Trackers (Mirror)
TRIM
User Administration
User Files
User Menu
Watch
WebHelp
Webmail and Groupmail
WebServices 3.x
Wiki 3D
Wiki History, page rename, etc
Wiki plugins extends basic syntax
Wiki syntax text area, parser, etc
Wiki structure (book and table of content)
Workflow (Galaxia Workflow engine)
Workspace
WYSIWYCA
WYSIWYG 2.x
XMLRPC