• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

when i first install over i enter the forum show error!

 
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 install the JForum when i installed there show :


Congratulations! You have successfully configured JForum. Now you can start using the message board, creating your own community.
For more information or help, please access http://www.jforum.net/help.htm

Click here to access the forum


i Click the "Click here to access the forum" botton enter the forum index then show error at ForumAction ->MostUsersEverOnline mostUsersEverOnline = ForumRepository.
getMostUsersEverOnline();

mostUsersEverOnline = null !,maybe mostUsersEverOnline is not initialization

thinks!




[originally posted on jforum.net by jyhcyd]
 
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
Which JForum version, Operational System and database are you using?

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 use JForum version: 2.1.7 ,Operational System : windows XP , database : Oracle Enterprise:9.0.1.0.0

i get files from CVS today(2006-08-22 day)
but this bug is not repaired !

when i install the jforum ,but InstallServlet is not initialization
mostUsersEverOnline then

MostUsersEverOnline mostUsersEverOnline = ForumRepository.
getMostUsersEverOnline();

// here mostUsersEverOnline.getTotal() = null.getTotal() !!!

if (totalUsers > mostUsersEverOnline.getTotal()) {
...
}

i repaired InstallServlet ->
public void init(ServletConfig config) throws ServletException {
super.init(config);
}

to :

public void init(ServletConfig config) throws ServletException {
super.init(config);
// initialization mostUsersEverOnline !!!
ForumStartup.startForumRepository(); }

then this bug is all right!

thinks!!





I LOVE JFORUM!!!

[originally posted on jforum.net by jyhcyd]
 
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 hope this bug will repair!! thinks!!!
[originally posted on jforum.net by jyhcyd]
 
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
JForum version: 2.1.7 is not the official version (2.1.6) so if you get files from CVS nothing guarantee it's a functionnal version as lastest CVS version is not a repository but a dev container
[originally posted on jforum.net by redhand]
 
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 use the Jforum version 2.1.6 install just now it no this problem!!
i hope this problem in Jforum version 2.1.7 will be repaired,because i like new Jforum ! thinks very much!!!
[originally posted on jforum.net by jyhcyd]
 
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
up!
[originally posted on jforum.net by jyhcyd]
 
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

jyhcyd wrote:i install the JForum when i installed there show :


Congratulations! You have successfully configured JForum. Now you can start using the message board, creating your own community.
For more information or help, please access http://www.jforum.net/help.htm

Click here to access the forum


i Click the "Click here to access the forum" botton enter the forum index then show error at ForumAction ->MostUsersEverOnline mostUsersEverOnline = ForumRepository.
getMostUsersEverOnline();

mostUsersEverOnline = null !,maybe mostUsersEverOnline is not initialization

thinks!






who can repair this problem!!!


[originally posted on jforum.net by jyhcyd]
 
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 use jforum 2.1.6 not this problem but jforum 2.1.7 have this problem

when i debug i find jforum 2.1.6 install finished i Click the "Click here to access the forum" button the jforum program enter JForum -> init() then mostUsersEverOnline is initialization !!!

but i debug jforum 2.1.7 install finished i Click the "Click here to access the forum" button the jforum program enter JForum -> service() so that the mostUsersEverOnline is not initialization ! but i do not know why jforum 2.1.7 can not enter JForum -> init() ??

thinks!!!
[originally posted on jforum.net by jyhcyd]
 
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
it is not problem , i neglect !
jforum 2.1.6 : document.location = "install/install.page?module=install&action=welcome"; in index.htm
jforum 2.1.7 : index.htm document.location = "forums/list.page"; in index.htm

change index.htm in jforum 2.1.7
document.location = "install/install.pagemodule=install&action=welcome";

the problem has been solved !



[originally posted on jforum.net by jyhcyd]
 
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 develpment versio does not have all things properly set to run the installer - that's why index.htm points to forums/list.page ;)

Rafael
[originally posted on jforum.net by Rafael Steil]
reply
    Bookmark Topic Watch Topic
  • New Topic