Changes between Version 5 and Version 6 of TracPlugins
- Timestamp:
- Dec 2, 2009, 4:25:43 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracPlugins
v5 v6 2 2 [[TracGuideToc]] 3 3 4 Since version 0.9, Trac supports [ PluginList plugins] that extend the built-in functionality. The plugin functionality is based on the [trac:TracDev/ComponentArchitecture component architecture].4 Since version 0.9, Trac supports [trac:PluginList plugins] that extend the built-in functionality. The plugin functionality is based on the [trac:TracDev/ComponentArchitecture component architecture]. 5 5 6 6 == Requirements == … … 98 98 == Setting up the Plugin Cache == 99 99 100 Some plugins will need to be extracted by the Python eggs runtime (`pkg_resources`), so that their contents are actual files on the file system. The directory in which they are extracted defaults to the home directory of the current user, which may or may not be a problem. You can however override the default location using the `PYTHON_EGG_CACHE` environment variable.100 Some plugins will need to be extracted by the Python eggs runtime (`pkg_resources`), so that their contents are actual files on the file system. The directory in which they are extracted defaults to '.python-eggs' in the home directory of the current user, which may or may not be a problem. You can however override the default location using the `PYTHON_EGG_CACHE` environment variable. 101 101 102 102 To do this from the Apache configuration, use the `SetEnv` directive as follows: … … 120 120 SetHandler mod_python 121 121 ... 122 PythonOptionPYTHON_EGG_CACHE /path/to/dir122 SetEnv PYTHON_EGG_CACHE /path/to/dir 123 123 </Location> 124 124 }}} 125 125 126 ''Note: SetEnv requires the `mod_env` module which needs to be activated for Apache. In this case theSetEnv directive can also be used in the `mod_python` Location block.''126 ''Note: !SetEnv requires the `mod_env` module which needs to be activated for Apache. In this case the !SetEnv directive can also be used in the `mod_python` Location block.'' 127 127 128 128 For [wiki:TracFastCgi FastCGI], you'll need to `-initial-env` option, or whatever is provided by your web server for setting environment variables. 129 129 130 ''Note: that if you already use -initial-env to set the project directory for either a single project or parent you will need to add an additional -initial-env directive to the FastCgiConfig directive. I.e.130 ''Note: that if you already use -initial-env to set the project directory for either a single project or parent you will need to add an additional -initial-env directive to the !FastCgiConfig directive. I.e. 131 131 132 132 {{{ … … 173 173 === Verify you have proper permissions === 174 174 175 Some plugins require you have special permissions in order to use them. WebAdmin, for example, requires the user to have TRAC_ADMIN permissions for it to show up on the navigation bar.175 Some plugins require you have special permissions in order to use them. [trac:WebAdmin WebAdmin], for example, requires the user to have TRAC_ADMIN permissions for it to show up on the navigation bar. 176 176 177 177 === Is the wrong version of the plugin loading? === … … 185 185 === If all of the above failed === 186 186 187 OK, so the logs don't mention plugins, the egg is readable, the python version is correct ''and'' the egg has been installed globally (and is enabled in the trac.ini) and it still doesn't work or give any error messages or any other indication as to why? Hop on the IrcChanneland ask away.187 OK, so the logs don't mention plugins, the egg is readable, the python version is correct ''and'' the egg has been installed globally (and is enabled in the trac.ini) and it still doesn't work or give any error messages or any other indication as to why? Hop on the [trac:IrcChannel IrcChannel] and ask away. 188 188 189 189 ----