• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Please Please Help

reevesy

New Member
Joined
Aug 21, 2007
Messages
84
Reaction score
0
Location
England
ok please someone help me this time.
player skills dont save and the player skills file in my sql database in empty. why is this?
 
If you want to give full permissions with mysql you can use GRANT.
For example. GRANT ALL ON <database.*> TO <user@host> IDENTIFIED BY 'password';

Then you can do GRANT INSERT ON database.* TO user@host IDENTIFIED BY 'password';
 
I just told you.

It looks like this:
mysql>
Then you write in it so it look like
mysql> GRANT INSERT ON yourdatabase.* TO youruser@localhost IDENTIFIED BY 'yourpassword';
and hit ENTER. Don't forget to edit the database and the user and the password.

If you use phpmyadmin this is a lot easier with the gui.
 
Last edited:
Back
Top