DayZ Whitelister Pro App

It seems like creating new threads is having issues with the captcha, it won't seem to accept even a correct entry :(

I'll make the thread once the admins sort it out.
 
You aren't putting in correct MySQL details in. Filling in correct credentials will fix the issue.

Edit: Actually, it looks more like the database user you're using to log in with doesn't have permission to add new rows to the log. I'd double check the privileges for your user and try again.

How could that be if it adds rows for the other tables that were added without issues?
 
That's strange. Are you using the same DB user in the whitelister as the one you can add new rows with? The error states "INSERT command denied to user 'DBNAME'@'MYIP' for table 'log'" which tells me whichever user you're logging in as on the whitelister, doesn't have permission to insert rows into the 'log' table.
 
Run this against your database:
Code:
SHOW GRANTS FOR 'DBUSER'@'%';

which should return something like:
Code:
GRANT ALL PRIVILEGES ON `whitelist`.* TO 'DBUSER'@'%'

If you do see that you've been granted all privileges on your whitelist table, then I'll have to look into the code. Let me know.
 
Host: localhost
Database: bliss_371
Generation Time: Nov 08, 2012 at 04:59 PM
Generated by: phpMyAdmin 3.5.2.2 / MySQL 5.1.63-0+squeeze1
SQL query: SHOW GRANTS FOR 'bliss_371'@'%';
Rows: 2
Grants for bliss_371@%
GRANT USAGE ON *.* TO 'bliss_371'@'%' IDENTIFIED BY PASSWORD '*REDACTED'
GRANT ALL PRIVILEGES ON `bliss_371`.* TO 'bliss_371'@'%' WITH GRANT OPTION
 
Hmm that's strange. What is your whitelist database name? Have you just tried to insert the tables and routines into the same database as your hive tables? Or have you created a separate database specifically for the whitelist?

I'll have a look through the code later on this evening to see if I can spot anything that would be making this fall over when trying to add log entries.
 
app has been running good has only crashed one time but i think it was from the spamming reconnects lol. has there been anymore updates?
 
Back
Top