Message |
|
Yes, this time only add a new column user_twitter in jforum_users table, and its default value is null.
I think your JForum 2.3.4 will still work.
|
|
|
When it comes to upgrading to new version of JForum, it is painful to find out what have been changed/updated, especially if you have customized the html template files.
This time I found a good tool called DiffMerge to compare two versions of JForum's war files in exploded directories.
Just follow these steps:
1.You can download DiffMerge from https://sourcegear.com/diffmerge/. And install it.
2.Download jforom-2.3.4.war and jforum-2.3.5.war.
3.Uncompress these two war files by some kind of unzip tool(for example 7-zip).
4.After DiffMerge installed, execute it and use it's File>Open Folder Diff... function, and choose the jforum-2.3.4 and jforum-2.3.5 folder to compare the difference.
5.Then you could find out what have been updated by new version of JForum.
|
|
|
You have to do it yourself. Find out the SQL file that match your database type under upgrade/2.3.5 named <db_type>_2.3.2_to_2.3.5.sql.
Run it once before you start up JForum.
|
|
|
The JForum2 Project is proud to announce the release of version 2.3.5 of JForum. This release includes bug fixes and new features compared to version 2.3.4.
You can download the latest war file from the following URL, then deploy it to your Tomcat's webapps directory:
http://code.google.com/p/jforum2/downloads/list
If your Tomcat doesn't unpack the war file automatically, you'll need to unpack it manually, then restart your Tomcat.
|
|
|
Hi udittmer,
I check the maven dependency tree:
lucene-highlighter-3.6.2.jar->lucene-queries-3.6.2.jar->jarkarta-regexp-1.4.jar
You'll need to check the lucene features if this jar was removed.
|
|
|
Hi, for captcha not working on JBoss 7, check this post:
http://jforum.andowson.com/posts/list/63.page
And check this for running JForum on JBoss:
http://jforum.andowson.com/posts/list/21.page
|
|
|
If you got problem on checkout source code and build with maven in Eclipse.
This is my screenshots for reference.
|
|
|
Maybe you can do this in the following way:
Assume all data in DB are stored in server time. You can convert all timestamp to local time in server side. You'll need to get an extra parameter for user's local timezone, say local_tz, and use server timezone to add or subtract local_tz before send the final time to the front for display.
|
|
|
Please send private message to me, and give me your gmail address.
|
|
|
You can check the trunk/.settings/org.eclipse.core.resources.prefs and see if there is an encoding setting for the html template file.
#Fri Nov 18 23:23:51 CST 2011
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/main/resources/templates/default/admin/admin_index.htm=UTF-8
encoding//src/main/resources/templates/default/admin/admin_welcome.htm=UTF-8
encoding//src/main/resources/templates/default/admin/menu.htm=UTF-8
encoding//src/main/resources/templates/default/header.htm=UTF-8
encoding//src/main/resources/templates/default/install.htm=UTF-8
encoding//src/main/resources/templates/default/install_check_info.htm=UTF-8
encoding//src/main/resources/templates/default/install_error.htm=UTF-8
encoding//src/main/resources/templates/default/install_finished.htm=UTF-8
encoding//src/main/resources/templates/default/list_smilies.htm=UTF-8
encoding//src/main/resources/templates/default/pm_finduser.htm=UTF-8
encoding//src/main/resources/templates/default/pm_review_message.htm=UTF-8
encoding//src/main/resources/templates/default/topic_review.htm=UTF-8
encoding//src/test/java=UTF-8
encoding//src/test/resources=UTF-8
encoding/<project>=UTF-8
|
|
|
Hi Raskolnikov,
Would you please add back the deleted part to the pom.xml and try the following command again:
mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar -DgeneratePom=true
The last parameter for generating a POM will save you from pom.xml warnings
And check if this works now?
Reference:
http://stackoverflow.com/questions/1074869/find-oracle-jdbc-driver-in-maven-repository
|
|
|
Hi Raskolnikov,
In your case, just remove the following fragment from pom.xml:
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
<scope>compile</scope>
</dependency>
And copy the ojdbc14.jar file into src\main\webapp\WEB-INF\lib directory yourself.
|
|
|
Try to locate your local m2 repository directory for ojdbc14.
For example, mine is under the C:\Users\Andowson\.m2\repository\com\oracle\ojdbc14\10.2.0.4.0 path.
And delete all the files except the ojdbc14-10.2.0.4.0.jar.
Run your maven build command and test if this works.
|
|
|
Please make sure that you have followed the step 7.
7.You need to download the Oracle Database 10g Release 2 (10.2.0.4) drivers ojdbc14.jar from oracle.com yourself, rename it to ojdbc14-10.2.0.4.0.jar, and then copy it into %HOMEPATH%\.m2\repository\com\oracle\ojdbc14\10.2.0.4.0 directory or use the following command to add it to your Maven local repository:
mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar
|
|
|
Try adding this line
<path name="com/sun/image/codec/jpeg" />
to the JBoss module.xml file:
jboss/modules/sun/jdk/main/module.xml
Check if this works.
|
|
|