jGroupware

Download & Installation

Homepage ]  [ Download ]  [ Javadocs ]  [ To-do ]  [ CVS ]  [ Sourceforge page ]

 

The current release is made up of one web-archive file (WAR) which can be downloaded from here.

This can be installed by placing the file in the webapps folder of a tomcat installation. When tomcat is next started it will open the archive up and install the application.

To work, the application needs to be pointed at a working moregroupware database. This can be done by updating the datasource section of the applications struts-config.xml file. This can be found under webapps/jGroupware/WEB-INF/ (after tomcat has expanded the archive).

The section that must be updated is shown below.

        <data-sources>
                <data-source>
                        <set-property property="driverClass" value="com.mysql.jdbc.Driver"/>
                        <set-property property="password" value="mgwuser"/>
                        <set-property property="url" value="jdbc:mysql://localhost/mgwdb"/>
                        <set-property property="user" value="mgwuser"/>
                </data-source>
        </data-sources>