|
I've tested CsaWiki in Tomcat 3 and 5.0.28, WebLogic 7 and WebSphere 5, if you have tested CsaWiki in other platforms please let me know.
To install CsaWiki in Tomcat or WebLogic copy the file CsaWiki-x.x.war to the autodeploy folder:
- Tomcat: ~tomcat/webapps
- WebLogic: WL_HOME/user_projects/domains/your_domain/applications
In WebSphere you will need to install the WAR manually using the administrative console accepting using default values for most parameters.
CsaWiki has only one servlet (wikiServlet) that supports the whole site. The config parameter config (see web.xml) points to the configuration file.
...
<init-param>
<param-name>config</param-name>
<param-value>WEB-INF/wikis/wiki-config.properties</param-value>
</init-param>
...
If the config file is not found, CsaWiki will create a complete basic configuration (creating the folder if necesary) using that file and folder. The basic configuration has the following wikis.
The config file is very simple and defines folders, log files and users. If the config file is not created automatically make shure the application server has file permissions on the selected folder.
To enter the admin area, the default user and password is admin/admin.
|