Im kinda new to this.. so this is what I did.. and I got it to work
1. I unzipped the file and moved the unzipped files to my c:\ directory (made it easy for navigation)
2. I went to the root of that directory and did
jar cvf c:\JForum[version].war . (the last period means WAR the current directory)
that WAR's up the file
I installed this file on our Jonas application server
In the meantime I created the database and the user in MySQL
mysql> create database jforumdb;
mysql> grant all privileges on jforumdb.* to 'jforumuser'@'%';
mysql> set password for 'jforumuser'@'%' = password('mypassword');
Then when you go to
http://www.whatever.com/JForum[version]
It will take you to the install application..
badda bing.. badda boom.. That should be it..
Hope that helps.
--Dave
Univ of Southern Maine
[originally posted on jforum.net by Anonymous]