• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Can't use chinese username when registering or logon!!!

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is a known bug. We are working to fix this.

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
But I found that I can register using chinese username in your web site .
Why can't I use in my jforum?
[originally posted on jforum.net by richardsclin]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The JForum version which runs on jforum.net is the latest CVS branch, so many bugs you may find in your version are fixed on jforum.net.

I put here the development version for testing purposes, and you are free to get it from cvs.

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you give me the link to get fixed version?
My version is RC3-1 downloaded from SourceForge.
[originally posted on jforum.net by richardsclin]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Go to

https://jforum.dev.java.net/source/browse/jforum/

There you will find explanation about how to download the CVS release. See "Access options", "Setup WinCVS client" and "Setup CVS command line client".

The module name is "jforum", all letters lowercase. There is a module named "JForum", but this is an old one.

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Should download all files in src directory?
[originally posted on jforum.net by Anonymous]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When I register using chinese username, it got exception.
How can I resolve this problem?

The exception is as follow..
2004-06-13 21:36:08,977 ERROR [STDERR] java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at net.jforum.Command.process(Command.java:81)
[originally posted on jforum.net by richardsclin]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you tell me download which files to resolve the problem?
[originally posted on jforum.net by richardsclin]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You should download all files ( including images, configurations, html files and so on ) and recompile jforum from scratch using any Java compiler from the 1.4.x series.

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got this warnning when running new version.

[STDERR] *WARNING* cannot load installation specific properties: C:\jboss\server\default\deploy\JForum.war/WEB-INF/config/Administrator.conf

another question:
Is the database schema and initial data same with the RC3-1 version?
[originally posted on jforum.net by richardsclin]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

richardsclin wrote:I got this warnning when running new version.

[STDERR] *WARNING* cannot load installation specific properties: C:\jboss\server\default\deploy\JForum.war/WEB-INF/config/Administrator.conf



You can ignore it most of the time. JForum will search for a file named "Administrator.conf" and try to load customized propertyes. Note that the filename is taken from from the "username' property, so if you log in with another account, it will be the name of the user in logged in your PC.
This file is for development purposes, in order to not change SystemGlobals.properties directly.

richardsclin wrote:
another question:
Is the database schema and initial data same with the RC3-1 version?



No, is a bit different, since we added private messages.

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OK, thank you!

It seems that I found some bugs when trace source code.
How to report source code bugs?


[originally posted on jforum.net by richardsclin]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

richardsclin wrote:OK, thank you!

It seems that I found some bugs when trace source code.
How to report source code bugs?



Our bug tracker is at www.jforum.net/jira

You can create issues using the top link "Create new Issue". It is not necessary that you register an user to create entries, but It would be nice if you do, so this way we can have more interaction

Rafael
[originally posted on jforum.net by Rafael Steil]
 
I love a woman who dresses in stainless steel ... and carries tiny ads:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic