Minepacks

Minepacks

2M Downloads

Attempting to connect minepacks to bungee

Bigi2 opened this issue ยท 10 comments

commented

Help request

Problem

Hello! I have been trying to connect minepacks among 3 servers using MYSQL and so far haven't been successful. Whenever I put in my database details and restart the servers, all items disappear from the backpacks when moving between servers or logging off.
I have put the plugin into my bungee server but it has not generated a folder, not sure if that is the issue.

What I have tried

I've tried playing around with the config settings but the issue seems to happen when I add in MYSQL details and set bungeecord to true.

commented

Could you please share your log file with me?

commented

According to this log file you don't even have Minepacks installed.

commented

That's so weird.... because it is installed and I have access to the commands and have used them.

commented
commented

Your MySQL user does not have the "REFERENCES" privilege.

commented

How do I adjust privileges? My database isn't allowing me to adjust them.

commented

If you are using the MySQL database provided by your server provider you will probably have to contact them.

If you have admin access to the database, login with your admin account and run GRANT REFERENCES ON <YOUR_DATABASE_NAME> TO '<YOUR_USER>'@'%'; and then run FLUSH PRIVILEGES;.

commented

message-1.txt
It's not a privileges problem, I have all the privileges. This is the problem that comes up in console, how do I fix it?

commented

You could try to create the table manually with this query:

CREATE TABLE IF NOT EXISTS `backpacks` (
`owner` INT UNSIGNED NOT NULL,
`itemstacks` BLOB,
`version` INT DEFAULT 0,
`lastupdate` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`owner`)
);