• 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!

MYSQL Table errors

bielzin

Scripter, Retired Mapper
Joined
Jul 29, 2009
Messages
103
Reaction score
2
Location
At Home
Hey guys i need help with these following tables:

player_logins
geoip

The following errors come up:

mysql_real_query(): SELECT ip, time FROM player_logins WHERE player_id=3 ORDER BY id DESC LIMIT 1 - MYSQL ERROR: Table 'tfs.player_logins' doesn't exist (1146)
mysql_real_query(): INSERT INTO player_logins VALUES(NULL, 3 , 1450227120, 4184277596) - MYSQL ERROR: Table 'tfs.player_logins' doesn't exist (1146)
mysql_real_query(): SELECT cc FROM geoip WHERE end>=1543661561 LIMIT 1 - MYSQL ERROR: Table 'tfs.geoip' doesn't exist (1146)

I cant find a solution to these errors, can anyone please help me?
 
Code:
MYSQL ERROR: Table 'tfs.player_logins' doesn't exist (1146)
Code:
MYSQL ERROR: Table 'tfs.player_logins' doesn't exist (1146)
Code:
MYSQL ERROR: Table 'tfs.geoip' doesn't exist (1146)
Create those tables
 
Code:
MYSQL ERROR: Table 'tfs.player_logins' doesn't exist (1146)
Code:
MYSQL ERROR: Table 'tfs.player_logins' doesn't exist (1146)
Code:
MYSQL ERROR: Table 'tfs.geoip' doesn't exist (1146)
Create those tables
Well I'm trying to create them, I just don't know what colums i should use on the tables.
 
Back
Top