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!

(Release) pwAdmin 1.4.5 (Character Page, Edit XML & Live Chat)

Junior Spellweaver
Joined
Nov 17, 2008
Messages
125
Reaction score
11
I have installed the pwadmin from here ->
I did all the steps mentioned but i get cannot connect in browser.What did i do wrong?I even tried changing the port to 9090 and that doesn't work either.
 
Joined
Jun 7, 2009
Messages
543
Reaction score
221
I don't know anything about how that release is set up as I haven't downloaded it myself. Only thing I can suggest is look where the admin panel (I assume it's iweb) is located and place pwAdmin in the same directory. As for the port number, you'll have to check the port that is used by what ever java server is being used by the release. Also don't forget to check the settings for pwAdmin as well.
 
Junior Spellweaver
Joined
Nov 17, 2008
Messages
125
Reaction score
11
I don't know anything about how that release is set up as I haven't downloaded it myself. Only thing I can suggest is look where the admin panel (I assume it's iweb) is located and place pwAdmin in the same directory. As for the port number, you'll have to check the port that is used by what ever java server is being used by the release.

Well i presumed it's the latest that's why i got it.iweb is in tomcat folder.I will try and see what happens.Maybe that release doesn't even work on 1.4.6

Well i presumed it's the latest that's why i got it.iweb is in tomcat folder.I will try and see what happens.Maybe that release doesn't even work on 1.4.6

No it doesn't work.The thing is even when i try to access iweb i get unable to connect.but the register page works.is it posible that i don't have the correct vbox network settings?
 
Last edited:
Junior Spellweaver
Joined
Nov 17, 2008
Messages
125
Reaction score
11
Last edited:
Newbie Spellweaver
Joined
Sep 17, 2013
Messages
49
Reaction score
3
hey bro DaMadBoy When u fix 2x exp?
and i have a problem when i want enter game its says wrong usrname or password .
i put ue dbo.sql im my phpmyadmin and then i make a new user. but still i have that problem
 
Joined
Jul 26, 2011
Messages
2,030
Reaction score
396
Code:
<%@page import="java.io.*"%>

<%
//-------------------------------------------------------------------------------------------------------------------------
//------------------------------- SETTINGS --------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------------------------------------------

	// pwadmin access password as md5 encrypted string
	// default password is root -> 63a9f0ea7bb98050796b649e85481845
	String iweb_password = "63a9f0ea7bb98050796b649e85481845";

	// connection settings to the mysql pw database
	String db_host = "HOSTNAME";
	String db_port = "PORT";
	String db_user = "USER";
	String db_password = "PASSWORD";
	String db_database = "DATABASE";

	// Type of your items database required for mapping id's to names
	// Options are my or pwi
	String item_labels = "pwi";

	// Absolute path to your PW-Server main directory (startscript, stopscript, /gamed)
	// requires a tailing slash
	String pw_server_path = "/path/to/server/files/";

	// If you have hundreds of characters or heavy web acces through this site
	// It is recommend to turn the realtime character list feature off (false)
	// to prevent server from overload injected by character list generation
	boolean enable_character_list = false;

	String pw_server_name = "Perfect World";
	String pw_server_description = "Level limit, EXP, SP, DROP and COINS infos are based on <b>ptemplate.conf</b><br>Server status is based on <b>glinkd</b> socket<br>Online users are based on <b>gdeliveryd</b> protocol<br><font color=red>CHANGING <b>SERVER CONFIGURATION</b> ON PWADMIN WILL NOT WORK FOR 1.4.x !</font> ";

//-------------------------------------------------------------------------------------------------------------------------
//----------------------------- END SETTINGS ------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------------------------------------------

	String pw_server_level = "?";
	String pw_server_exp = "?";
	String pw_server_sp = "?";
	String pw_server_drop = "?";
	String pw_server_coins = "?";

	BufferedReader bfr = new BufferedReader(new FileReader(pw_server_path + "gamed/ptemplate.conf"));

	String row;
	while((row = bfr.readLine()) != null)
	{
		row = row.replaceAll("\\s", "");
		if(row.indexOf("logic_level_limit=") != -1)
		{
			int pos = row.length();
			if(row.indexOf("#") != -1)
			{
				pos = row.indexOf("#");
			}
			pw_server_level = row.substring(18, pos);
		}
		if(row.indexOf("exp_bonus=") != -1)
		{
			int pos = row.length();
			if(row.indexOf("#") != -1)
			{
				pos = row.indexOf("#");
			}
			pw_server_exp = row.substring(10, pos);
		}
		if(row.indexOf("sp_bonus=") != -1)
		{
			int pos = row.length();
			if(row.indexOf("#") != -1)
			{
				pos = row.indexOf("#");
			}
			pw_server_sp = row.substring(9, pos);
		}
		if(row.indexOf("drop_bonus=") != -1)
		{
			int pos = row.length();
			if(row.indexOf("#") != -1)
			{
				pos = row.indexOf("#");
			}
			pw_server_drop = row.substring(11, pos);
		}
		if(row.indexOf("money_bonus=") != -1)
		{
			int pos = row.length();
			if(row.indexOf("#") != -1)
			{
				pos = row.indexOf("#");
			}
			pw_server_coins = row.substring(12, pos);
		}
	}

	bfr.close();

	if(request.getSession().getAttribute("items") == null)
	{
		String[] items = new String[60001];

		try
		{
			bfr = new BufferedReader(new InputStreamReader(new FileInputStream(new File(request.getRealPath("/include/items") + "/default.dat")), "UTF8"));
			if(item_labels.compareTo("my") == 0)
			{
				bfr = new BufferedReader(new InputStreamReader(new FileInputStream(new File(request.getRealPath("/include/items") + "/my.dat")), "UTF8"));
			}
			if(item_labels.compareTo("pwi") == 0)
			{
				bfr = new BufferedReader(new InputStreamReader(new FileInputStream(new File(request.getRealPath("/include/items") + "/pwi.dat")), "UTF8"));
			}
			int count = 0;
			while((row = bfr.readLine()) != null && count < 60001)
			{
				items[count] = row;
				count++;
			}
			bfr.close();
		}
		catch(Exception e)
		{
		}

		request.getSession().setAttribute("items", items);
	}
%>
.pwadminconfig.jsp


and that's enough spoon-feeding for you..
 
Newbie Spellweaver
Joined
Sep 17, 2013
Messages
49
Reaction score
3
Code:
<%@page import="java.io.*"%>

<%
//-------------------------------------------------------------------------------------------------------------------------
//------------------------------- SETTINGS --------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------------------------------------------

    // pwadmin access password as md5 encrypted string
    // default password is root -> 63a9f0ea7bb98050796b649e85481845
    String iweb_password = "63a9f0ea7bb98050796b649e85481845";

    // connection settings to the mysql pw database
    String db_host = "HOSTNAME";
    String db_port = "PORT";
    String db_user = "USER";
    String db_password = "PASSWORD";
    String db_database = "DATABASE";

    // Type of your items database required for mapping id's to names
    // Options are my or pwi
    String item_labels = "pwi";

    // Absolute path to your PW-Server main directory (startscript, stopscript, /gamed)
    // requires a tailing slash
    String pw_server_path = "/path/to/server/files/";

    // If you have hundreds of characters or heavy web acces through this site
    // It is recommend to turn the realtime character list feature off (false)
    // to prevent server from overload injected by character list generation
    boolean enable_character_list = false;

    String pw_server_name = "Perfect World";
    String pw_server_description = "Level limit, EXP, SP, DROP and COINS infos are based on <b>ptemplate.conf</b><br>Server status is based on <b>glinkd</b> socket<br>Online users are based on <b>gdeliveryd</b> protocol<br><font color=red>CHANGING <b>SERVER CONFIGURATION</b> ON PWADMIN WILL NOT WORK FOR 1.4.x !</font> ";

//-------------------------------------------------------------------------------------------------------------------------
//----------------------------- END SETTINGS ------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------------------------------------------

    String pw_server_level = "?";
    String pw_server_exp = "?";
    String pw_server_sp = "?";
    String pw_server_drop = "?";
    String pw_server_coins = "?";

    BufferedReader bfr = new BufferedReader(new FileReader(pw_server_path + "gamed/ptemplate.conf"));

    String row;
    while((row = bfr.readLine()) != null)
    {
        row = row.replaceAll("\\s", "");
        if(row.indexOf("logic_level_limit=") != -1)
        {
            int pos = row.length();
            if(row.indexOf("#") != -1)
            {
                pos = row.indexOf("#");
            }
            pw_server_level = row.substring(18, pos);
        }
        if(row.indexOf("exp_bonus=") != -1)
        {
            int pos = row.length();
            if(row.indexOf("#") != -1)
            {
                pos = row.indexOf("#");
            }
            pw_server_exp = row.substring(10, pos);
        }
        if(row.indexOf("sp_bonus=") != -1)
        {
            int pos = row.length();
            if(row.indexOf("#") != -1)
            {
                pos = row.indexOf("#");
            }
            pw_server_sp = row.substring(9, pos);
        }
        if(row.indexOf("drop_bonus=") != -1)
        {
            int pos = row.length();
            if(row.indexOf("#") != -1)
            {
                pos = row.indexOf("#");
            }
            pw_server_drop = row.substring(11, pos);
        }
        if(row.indexOf("money_bonus=") != -1)
        {
            int pos = row.length();
            if(row.indexOf("#") != -1)
            {
                pos = row.indexOf("#");
            }
            pw_server_coins = row.substring(12, pos);
        }
    }

    bfr.close();

    if(request.getSession().getAttribute("items") == null)
    {
        String[] items = new String[60001];

        try
        {
            bfr = new BufferedReader(new InputStreamReader(new FileInputStream(new File(request.getRealPath("/include/items") + "/default.dat")), "UTF8"));
            if(item_labels.compareTo("my") == 0)
            {
                bfr = new BufferedReader(new InputStreamReader(new FileInputStream(new File(request.getRealPath("/include/items") + "/my.dat")), "UTF8"));
            }
            if(item_labels.compareTo("pwi") == 0)
            {
                bfr = new BufferedReader(new InputStreamReader(new FileInputStream(new File(request.getRealPath("/include/items") + "/pwi.dat")), "UTF8"));
            }
            int count = 0;
            while((row = bfr.readLine()) != null && count < 60001)
            {
                items[count] = row;
                count++;
            }
            bfr.close();
        }
        catch(Exception e)
        {
        }

        request.getSession().setAttribute("items", items);
    }
%>
.pwadminconfig.jsp


and that's enough spoon-feeding for you..

tnx love.
i do this before .
but still i have problem love. wrong user name and password.
when i use dbo.sql i have wrong user name and password.
 
Newbie Spellweaver
Joined
Sep 17, 2013
Messages
49
Reaction score
3
how i can fix this?
err - (Release) pwAdmin 1.4.5 (Character Page,  Edit XML & Live Chat) - RaGEZONE Forums
i use
DaMadBoy pwadmin and dbo.sql .
who know how i can fix it?
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Sep 17, 2013
Messages
49
Reaction score
3
Another question .
when i want change password for a acc its says old passwoed mismatch(u r pwAdmin use binsalt encryption for create acc password)
how i can change it to base64?
cuz my server use base 64 to read user and pass.
 
Newbie Spellweaver
Joined
Nov 12, 2013
Messages
23
Reaction score
0
Please can someone help me?
FOTO 3 - (Release) pwAdmin 1.4.5 (Character Page,  Edit XML & Live Chat) - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Back
Top