Jive Forums is a powerful online discussion tool for websites. This document will guide you through installing the application. For a full list of features and more information, please visit the Jive Software website: http://www.jivesoftware.com
In order to install Jive Forums, you'll need to a server environment that meets the following requirements:
To complete the installation of Jive Forums, you'll need to perform each of the following steps:
Jive Forums should be installed as a web application in a Servlet 2.2 or later application server. Please consult your server documentation if you are not familiar with setting up web applications.
First, create a new web application. You may wish to call it jive, as we will below.
Next, copy the contents of the application folder of this distribution into the web application directory you just created. The directory structure should now look something like the following (many directories omitted for brevity):
jive
/admin
/WEB-INF
/classes
/lib
/jiveHome
Next, you must specify where you want the jiveHome directory to exist. There
are two ways to accomplish this:
<context-param>
<param-name>jiveHome</param-nam>
<param-value>PATH_TO_JIVE_HOME</param-value>
</context-param>
<servlet>
<servlet-name>JiveServlet</servlet-name>
<servlet-class>com.jivesoftware.forum.util.JiveServlet</servlet-class>
<load-on-startup/>
</servlet>
The Jive Forums web application should now be properly configured. Restart your application server as necessary and then proceed to the next installation step.
Jive Forums uses a database to store forum content. To setup your database you must load the appropriate database schema. You can find schemas in the "database" directory of this distribution. View the database setup documentation to learn how to install the schemas and JDBC drivers.
Complete the database steps outlined in the database setup documentation before proceeding further.
After completing the above steps, you should be ready to run the setup tool. Point your web browser to the location on your webserver where you installed the admin skin. For example: http://www.[yourserver].com/jive/admin/setup
The setup tool will guide you through the final steps of getting Jive up and running. Once setup is complete, you will be redirected to the admin tool, which can be found at something similar to http://www.[yourserver].com/jive/admin. Use the admin tool to create and manage forums, users, and groups.
Once you have completed the installation and setup of Jive, the admin tool will let you create and administer forums, users, and groups. End-users can browse the forums you've setup by visiting a URL similar to: http://www.[yourserver].com/jive
Please visit the Jive Software website to post bug reports and ask questions in the forums. If you have purchased a version of Jive Forums that includes a support plan, use the contact info that was provided when you made the purchase.
The Jive Forums source code is available via CVS. Find more information in the developer area of Jive Software website: http://www.jivesoftware.com/developer.
The extensive Javadoc documentation
included with this distribution can be used as a class reference.