Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

iweb noob help

Banned
Banned
Joined
Sep 1, 2004
Messages
170
Reaction score
5
okay got everything install server running but last problem is the iweb for 1.4.5 not got something right maybe someone can tell me what i did wrong
here is partial message
Code:
HTTP Status 500 - Unable to compile class for JSP:

type Exception report

message Unable to compile class for JSP:

description The server encountered an internal error that prevented it from fulfilling this request.

exception

org.apache.jasper.JasperException: Unable to compile class for JSP: 

An error occurred at line: 9 in the generated java file
Only a type can be imported. org.apache.commons.logging.Log resolves to a package

An error occurred at line: 10 in the generated java file
Only a type can be imported. org.apache.commons.logging.LogFactory resolves to a package

An error occurred at line: 11 in the generated java file
Only a type can be imported. com.goldhuman.util.LocaleUtil resolves to a package

An error occurred at line: 18 in the jsp file: /iweb/manage/index.jsp
DeliveryDB cannot be resolved
15: String strNewFakeMax = new String("5000");
16: {
17: 	Integer[] curmax = new Integer[3];
18: 	if( !DeliveryDB.GetMaxOnlineNum( curmax ) )
19: 		LogFactory.getLog("index.jsp").info("GetMaxOnlineNum error." );
20: 	if( null == curmax[0] )	curmax[0] = new Integer(-1);
21: 	if( null == curmax[1] )	curmax[1] = new Integer(-1);


An error occurred at line: 19 in the jsp file: /iweb/manage/index.jsp
LogFactory cannot be resolved
16: {
17: 	Integer[] curmax = new Integer[3];
18: 	if( !DeliveryDB.GetMaxOnlineNum( curmax ) )
19: 		LogFactory.getLog("index.jsp").info("GetMaxOnlineNum error." );
20: 	if( null == curmax[0] )	curmax[0] = new Integer(-1);
21: 	if( null == curmax[1] )	curmax[1] = new Integer(-1);
22: 	if( null == curmax[2] )	curmax[2] = new Integer(-1);


An error occurred at line: 30 in the jsp file: /iweb/manage/index.jsp
LocaleUtil cannot be resolved
27: 	strCur = curmax[2].toString();
28: }
29: 
30: String strDoubleExp = LocaleUtil.getMessage(request,"manage_index_unknow");
31: {
32: 	Double v = new com.goldhuman.service.GMServiceImpl().getw2iexperience(new com.goldhuman.service.interfaces.LogInfo());
33: 	if (v != null) {
 
Junior Spellweaver
Joined
Nov 7, 2011
Messages
111
Reaction score
10
I don't know if this will help, its just standard "procedure" to help you backtrack.

Is the IPs in iweb.conf correct? is iweb.conf in the etc folder?

check that you have the correct java version installed, or even have java at all.

Check that you're not forgetting to turn on your tomcat/jetty/jakarta(whichever you use) lol, it happens.


I never got iweb to work on my server. So I compensated by doing everything I need through SEledit..
 
Upvote 0
Back
Top