Changes between Version 1 and Version 2 of TracUpgrade
- Timestamp:
- 06/03/10 15:59:45 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracUpgrade
v1 v2 14 14 Get the new version as described in TracInstall, or your operating system specific procedure. 15 15 16 If you do a manual (not operating system specific) upgrade, you should also stop any running Trac server before the installation. Doing "hot" upgrades is not advised, especially not on Windows ([trac:ticket:7625 #7265]).16 If you do a manual (not operating system specific) upgrade, you may also later on want to remove the existing Trac code by deleting the `trac` directory from the Python `lib/site-packages` directory. 17 17 18 You may also want to remove the pre-existing Trac code by deleting the `trac` directory from the Python `lib/site-packages` directory, or remove Trac .eggs from former versions.19 18 The location of the site-packages directory depends on the operating system, and the location in which Python was installed. However, the following locations are common: 20 19 * If you’re using Linux: /usr/lib/python2.X/site-packages 21 20 * If you’re using Windows: C:\Python2.X\lib\site-packages 22 * If you’re using MacOSX: /Library/Python /2.X/site-packages21 * If you’re using MacOSX: /Library/Python2.X/site-packages 23 22 24 23 You may also want to remove the Trac `cgi-bin`, `htdocs`, `templates` and `wiki-default` directories that are commonly found in a directory called `share/trac` (the exact location depends on your platform). 25 26 This cleanup is not mandatory, but it makes it easier to troubleshoot issues later on, as you won't waste your time looking at code or templates from a previous release that are not being used anymore... As usual, make a backup before actually deleting things.27 24 28 25 If you had the webadmin plugin installed, you can now uninstall it as it is now part of the Trac code base. … … 53 50 Note that this procedure will of course leave your `WikiStart` page intact. 54 51 55 === Site Templates ===56 The templating engine has changed in 0.11, please look at TracInterfaceCustomization for more information.57 58 52 === Trac Macros, Plugins === 59 The Trac macros will need to be adapted, as the old-style wiki-macros are not supported anymore (due to the drop of [trac:ClearSilver ClearSilver] and the HDF); they need to be converted to the new-style macros, see WikiMacros. When they are converted to the new style, they need to be placed into the plugins directory instead and not wiki-macros, which is no longer scanned for macros or plugins. 60 61 === For CGI users === 62 63 For those who run Trac under the CGI environment, run this command in order to obtain the trac.cgi file: 64 {{{ 65 trac-admin /path/to/env deploy /deploy/directory/path 66 }}} 67 68 This will create a deploy directory with the following two subdirectories: `cgi-bin` and `htdocs`. Then update your Apache configuration file `httpd.conf` with this new `trac.cgi` location and `htdocs` location. 53 The Trac macros will need to be adapted, as the old-style wiki-macros are not supported anymore (due to the drop of ClearSilver and the HDF); they need to be converted to the new-style macros, see WikiMacros. When they are converted to the new style, they need to be placed into the plugins directory instead and not wiki-macros, which is no longer scanned for macros or plugins. 69 54 70 55 === Restart the Web Server === … … 91 76 == Older Versions == 92 77 93 For upgrades from versions older than Trac 0.10, refer first to trac:wiki:0.10/TracUpgrade. 94 95 Note that downgrading from Trac 0.11 to Trac 0.10.4 or 0.10.5 is easy, but has to be done manually, e.g. 96 {{{ 97 $ sqlite3 db/trac.db "update system set value=20 where name='database_version'" 98 }}} 99 (upgrade can be redone the normal way later on) 78 For upgrades from former versions refer to wiki:0.10/TracUpgrade. 100 79 101 80 -----