Jump to content
  • 0

L2j Webmanager


Seamless

Question

Hi Guys, I am currently setting up account manager for my server. My project is running l2jsunrise source. ACM im trying to install is l2jweb manager which is free. 

 

I am into my dedicated and try to setting up mysql to listen to remote users. I am currenytly with root@localhost user. I am trying to give priviliges to this user. I dont use navicat but i use workbench. 

 

So with cmd i entered 

GRANT ALL PRIVILEGES ON *.* TO 'USERNAME'@'%' IDENTIFIED BY 'PASSWORD';

For Some reason cant accept specific ip ( my webhosting ip) so in this case % to listen to all ips

 

After that i tried to start install.php but it saying that the databse is not connected. Port 3306 is open both inbound outbound.

 

Furthermore, tried to manage users with navicat. I added new user (acm) and gave him priviliges to change account trable and account_data table. 

 

Flush priviliges. Reastatted sql and still the php install cant find connection

 

 

I am stuck for 8-9 hours now trying to find a solution. Is anyone who can help  me ?

 

 

This is the guide which i found the files for web management

 

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
CREATE USER 'user'@'%' IDENTIFIED BY 'passwd';
ALTER USER 'user'@'%' IDENTIFIED WITH mysql_native_password BY 'passwd';
GRANT ALL PRIVILEGES ON *.* TO 'user'@'%' WITH GRANT OPTION;

the account manager you used is not only outdated but dangerous.

Edited by iTopZ
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...