Edgewall Software

Changes between Version 205 and Version 206 of TracInstall


Ignore:
Timestamp:
May 16, 2007, 9:29:40 AM (17 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v205 v206  
    1616     ClearSilver up to 10.3 and Python 2.5 don't seem to get along, so you'll probably have more luck with Python 2.4.  Note about it in [http://www.mail-archive.com/trac-dev@googlegroups.com/msg00034.html this mail exchange].
    1717     ''To follow-up on that thread, with Trac 0.11dev (i.e. current trunk since r3832), Clearsilver is no longer needed. Yay. See instructions in ["TracOnWindows/Python2.5"] [[br]]  -- ChristianBoos''
    18    * You can fix the problem with Python 2.5 (x_64) relativley simple, cause Clearsilver installed neo_cgi.so in the path /usr/lib/python2.5/site-packages instead of /usr/lib64/python2.5/site-packages. To solve the Problem i have just made a link in /usr/lib64/python2.5/site-packages with ''ln -s /usr/lib/python2.5/site-packages/neo_cgi.so neo_cgi.so'' to get it to run, just move the file to the correct location should solve it too.[[br]] -- KarlHeinzMarbaise
     18   * You can fix the problem with Python 2.5 (x_64) relativley simple, cause Clearsilver installed neo_cgi.so in the path /usr/lib/python2.5/site-packages instead of /usr/lib64/python2.5/site-packages. To solve the Problem i have just made a link in /usr/lib64/python2.5/site-packages with ''ln -s /usr/lib/python2.5/site-packages/neo_cgi.so neo_cgi.so'' to get it to run, just move the file to the correct location should solve it too.[[br]] -- !KarlHeinzMarbaise
    1919 * You also need a database system and the corresponding python drivers for it.
    2020   The database can be either SQLite, PostgreSQL or ''MySQL (experimental)''.
     
    3030
    3131 * [http://www.sqlite.org/ SQLite], version 3.3.4 and above preferred.
    32  * [http://pysqlite.org/ PySQLite], version 1.x (for SQLite 2.x) or version 2.x (for SQLite 3.x), version 2.3.2 preferred. For details see [http://trac.edgewall.org/wiki/PySqlite PySqlite]
     32 * [http://pysqlite.org/ PySQLite], version 1.x (for SQLite 2.x) or version 2.x (for SQLite 3.x), version 2.3.2 preferred. For details see PySqlite
    3333
    3434''Note: It appears that PySQLite 2.x is required for Trac 0.9+/SQLite 3.x if you plan to use the 'trac-post-commit-hook.py' script available from the 'contrib' section of the source repository.''
     
    4646
    4747'''Warning''': MySQL support is currently ''still'' experimental. That means it works for some people, but several issues remain, in particular regarding the use of unicode and the key length in the repository cache.
    48 See [http://trac.edgewall.org/wiki/MySqlDb MySqlDb] for more detailed informations.
     48See MySqlDb for more detailed informations.
    4949
    5050 * [http://mysql.com/ MySQL], version 4.1 or later
     
    5959'''Please note:''' if using Subversion, Trac must be installed on the '''same machine'''. Remote repositories are not currently supported.
    6060
    61  * [http://subversion.tigris.org/ Subversion], version >= 1.0. (versions recommended: 1.2.4, 1.3.2 or 1.4.0) and the '''''corresponding''''' Python bindings. For troubleshooting, check [http://projects.edgewall.com/trac/wiki/TracSubversion TracSubversion]
     61 * [http://subversion.tigris.org/ Subversion], version >= 1.0. (versions recommended: 1.2.4, 1.3.2 or 1.4.0) and the '''''corresponding''''' Python bindings. For troubleshooting, check TracSubversion
    6262   * Trac uses the [http://svnbook.red-bean.com/svnbook-1.1/ch08s02.html#svn-ch-8-sect-2.3 SWIG] bindings included in the Subversion distribution, '''not''' [http://pysvn.tigris.org/ PySVN] (which is sometimes confused with the standard SWIG bindings).
    6363   * If Subversion was already installed without the SWIG bindings, on Unix you'll need to re-`configure` Subversion and `make swig-py`, `make install-swig-py`.
    6464   * There are [http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 pre-compiled bindings] available for win32.
    65  * Support for other version control systems is provided via third-parties. See [http://projects.edgewall.com/trac/wiki/PluginList PluginList] and [http://projects.edgewall.com/trac/wiki/VersioningSystemBackend VersioningSystemBackend].
     65 * Support for other version control systems is provided via third-parties. See PluginList and VersioningSystemBackend.
    6666
    6767==== Web Server ====
     
    8282    * Note that !SilverCity 0.9.6 has a [http://sourceforge.net/tracker/index.php?func=detail&aid=1424436&group_id=45693&atid=443739 bug] that breaks Python syntax highlighting in Trac. Until an update is made available, we recommend using version 0.9.5.
    8383
    84 '''Attention''': The various available versions of these dependencies are not necessarily interchangable, so please pay attention to the version numbers above. If you are having trouble getting Trac to work please double-check all the dependencies before asking for help on the [http://projects.edgewall.com/trac/wiki/MailingList MailingList] or [http://projects.edgewall.com/trac/wiki/IrcChannel IrcChannel].
     84'''Attention''': The various available versions of these dependencies are not necessarily interchangable, so please pay attention to the version numbers above. If you are having trouble getting Trac to work please double-check all the dependencies before asking for help on the MailingList or IrcChannel.
    8585
    86 Please refer to the documentation of these packages to find out how they are best installed. In addition, most of the [http://projects.edgewall.com/trac/wiki/TracInstallPlatforms platform-specific instructions] also describe the installation of the dependencies. Keep in mind however that the information there ''probably concern older versions of Trac than the one you're installing'' (there are even some pages that are still talking about Trac 0.8!).
     86Please refer to the documentation of these packages to find out how they are best installed. In addition, most of the [wiki:TracInstallPlatforms platform-specific instructions] also describe the installation of the dependencies. Keep in mind however that the information there ''probably concern older versions of Trac than the one you're installing'' (there are even some pages that are still talking about Trac 0.8!).
    8787
    8888== Installing Trac ==
     
    163163'' Enjoy! ''
    164164
    165 [http://projects.edgewall.com/trac/wiki/TracTeam The Trac Team]
     165[wiki:TracTeam The Trac Team]
    166166
    167167----