Wiki source code of Configuration
Version 1.1 by Vincent Massol on 2007/03/16
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | 1 Configuration | ||
2 | |||
3 | One you have XWiki [installed>Installation] you'll want to configure it. Configuration can be done in 2 ways: | ||
4 | * by stopping the XWiki instance and editing the ~~xwiki/WEB-INF/xwiki.cfg~~ file, and then restarting XWiki | ||
5 | * by going to the Administration page (when using the XWiki 1.0 skin, there's a an "Administration" link in the top right corner of the screen - You can also go directly to ~~http://\<server\>/xwiki/bin/admin/XWiki/XWikiPreferences~~). This allows to keep the Server running while making the changes. | ||
6 | |||
7 | Note that some configurations are only accessible from the ~~xwiki.cfg~~ file and have no equivalent on the Administration page. | ||
8 | |||
9 | There are various things you can configure: | ||
10 | #toc("" "" "") | ||
11 | |||
12 | 1.1 Enabling/Disabling Statistics | ||
13 | |||
14 | To disable [the Statistics feature>UserGuide.Statistics], edit your ~~xwiki.cfg~~ file and replace the following properties as shown here: | ||
15 | {code} | ||
16 | xwiki.stats=0 | ||
17 | xwiki.stats.default=0 | ||
18 | {code} | ||
19 | |||
20 | To enable them, change "0" to "1". |