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]Web Admin/User Panel v1.0

Junior Spellweaver
Joined
Jun 22, 2004
Messages
141
Reaction score
1
Hello Guys

the release function :

- GM/DEV/OPR Login ( detected by Character with [GM]/[DEV]/[OPR] on the name )
-- Edit Accounts ( select by Account Name or Character Name )
-- Edit Character ( select by Character Name )
-- Give / Take Coins to Account ( select by Character Name )
-- Send Weapon to Character ( select by Character Name ) ( order by Lv till Lv / Class --> See all Weapons / Select the + )
-- Send Armor to Character ( select by Character Name ) ( order by Lv till Lv / Class / Armor Type --> See all Armors / Select the + )
-- Ban Account ( select by Account Name or Character Name )
-- Ban Character ( select by Character )

This Options comes later :
-- Send Etc Item
-- View Inventory of Character / Delete Item on it

- User Login
-- Buy Coins ( 1 DIL --> X Coins can edit in controlpanel/coins.php on line 4 )
-- Rescue Teleport ( Teleport Offline Character to the Return Point )
-- Edit Account ( edit the own account --> Password / E-Mail / Secret Question / Secret Answer )




This Web Tool use MSSQL Connect and MySQL Connect

A ODBC Connect and MySQL Connect is in work at this time.


PM me and I can send you the DL Link


ITS NOT ALLOW TO EDIT OR DELETE THE COPYRIGHT ON IT


ATTENTION : Language of this Web Tool is German at this time.
But you can create new language files and translate it to other language. ( config/language/YOUR LANGUAGE/controlpanel/ )
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Mar 21, 2009
Messages
48
Reaction score
0
Hi and thank you for the download link...

I translated myself the english control panel :)

Hope you put it on your release ^^

Cya :p

edit: now i have 1 question, where should i apply the db-backup??
 
Junior Spellweaver
Joined
Jun 22, 2004
Messages
141
Reaction score
1
Thank you for Translation , I'm add it in the Relese files.

U must have install MySQL and there u must create a database ( name what u wish ) and in this database u must excute the sql backup.

Without MySQL the ControlPanel dont work and its to hard to add it all in MSSQL.
 
Newbie Spellweaver
Joined
Mar 21, 2009
Messages
48
Reaction score
0
I can't access to my account...
It says that is wrong...
I got it connected to mssql database, do i need to put all to mysql?

Like, all the game's databases :S
 
Junior Spellweaver
Joined
Jun 22, 2004
Messages
141
Reaction score
1
Look in your PHP.ini , and seach this :

;extension=php_mhash.dl

and edit it to

extension=php_mhash.dll

or delete the ; on begin :p
 
Newbie Spellweaver
Joined
Mar 21, 2009
Messages
48
Reaction score
0
Running ..

Do i have to edit this in every file?:
$ms_con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
 
Junior Spellweaver
Joined
Jun 22, 2004
Messages
141
Reaction score
1
Why Edit this line? U can configure your MSSQL and MySQL in config/mssql.conf.php and config/mysql.conf.php
 
Newbie Spellweaver
Joined
Mar 21, 2009
Messages
48
Reaction score
0
Why Edit this line? U can configure your MSSQL and MySQL in config/mssql.conf.php and config/mysql.conf.php

i was just asking, because i have those 2 files configured correctly and still nothing...
 
Junior Spellweaver
Joined
Jun 22, 2004
Messages
141
Reaction score
1
Login failed right?

Than go to controlpanel/index.php

Search this :

error_reporting(0);
ini_set('display_errors',false);

change it to

error_reporting(E_ALL|E_STRICT);
ini_set('display_error',true);


Post than please all Warnings and Errors.
 
Newbie Spellweaver
Joined
Mar 21, 2009
Messages
48
Reaction score
0
Login failed right?

Than go to controlpanel/index.php

Search this :

error_reporting(0);
ini_set('display_errors',false);

change it to

error_reporting(E_ALL|E_STRICT);
ini_set('display_error',true);


Post than please all Warnings and Errors.

Code:
Warning: mssql_connect() [function.mssql-connect]: message: Login failed for user '***'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in ***\login.php on line 11

Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: *** in ***\login.php on line 11

Notice: Use of undefined constant REMOTE_ADDR - assumed 'REMOTE_ADDR' in ***\login.php on line 17

Warning: mssql_query(): supplied argument is not a valid MS SQL-Link resource in ***\login.php on line 31

Warning: mssql_num_rows(): supplied argument is not a valid MS SQL-result resource in ***\login.php on line 32

Warning: mssql_query(): supplied argument is not a valid MS SQL-Link resource in ***\login.php on line 34

Warning: mssql_fetch_row(): supplied argument is not a valid MS SQL-result resource in ***\login.php on line 35

Warning: mssql_query(): supplied argument is not a valid MS SQL-Link resource in ***\login.php on line 37

Warning: mssql_fetch_row(): supplied argument is not a valid MS SQL-result resource in ***\login.php on line 38

Notice: Undefined variable: combi in ***\login.php on line 75

This game account is unfortunately not known to us.

Back to Login
 
Junior Spellweaver
Joined
Jun 22, 2004
Messages
141
Reaction score
1
Ahhh ok , go back to php.ini and activate this :

extension=php_mssql.dll

delete the ; on begin ;)

And u can login.

Dont forget to edit the

error_reporting(E_ALL|E_STRICT);
ini_set('display_error',true);

to

error_reporting(0);
ini_set('display_error',false);

in controlpanel/index.php



Your PHP dont have activ MSSQL Connection ;)


Is this not right than check your MSSQL Server Network Configuration and the User/Password.
 
Newbie Spellweaver
Joined
Mar 21, 2009
Messages
48
Reaction score
0
;extension=php_msql.dll
extension=php_mssql.dll

it is like this...

which one?
 
Junior Spellweaver
Joined
Jun 22, 2004
Messages
141
Reaction score
1
Check out MSSQL Network settings and MSSQL Server Logins ( Open Enterprise Manager --> Microsoft SQL Servers --> SQL Server Group --> (Your MSSQL Server) , right mouse click on it --> Properties --> Network Configuration... --> Add Named Pipes and TCP/IP to Activate Protocol --> Go back 2 Tasks now to SQL Server Properties --> Security --> Set Autentication to SQL Server and Windows --> Ok )

Restart your MSSQL Server now

Open your Query Analyser and check the Login Informations on Login to MSSQL Server who you have in the config files of the controlpanel.
 
Newbie Spellweaver
Joined
Mar 21, 2009
Messages
48
Reaction score
0
Check out MSSQL Network settings and MSSQL Server Logins ( Open Enterprise Manager --> Microsoft SQL Servers --> SQL Server Group --> (Your MSSQL Server) , right mouse click on it --> Properties --> Network Configuration... --> Add Named Pipes and TCP/IP to Activate Protocol --> Go back 2 Tasks now to SQL Server Properties --> Security --> Set Autentication to SQL Server and Windows --> Ok )

Restart your MSSQL Server now

Open your Query Analyser and check the Login Informations on Login to MSSQL Server who you have in the config files of the controlpanel.

All were right as you said, i can't find the problem :grr:
 
Back
Top