• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

error with website

wafuboe

Active Member
Joined
Dec 24, 2010
Messages
884
Solutions
2
Reaction score
26
i have this error on the character view on znote acc

Code:
string(73) "SELECT `id`, `owner`, `name`, `town_id` FROM `houses` WHERE `owner` = 1 ;"
(query - SQL error)
Type: select_multi (select multiple rows from database)

Unknown column 'town_id' in 'field list'

any idea how can i fix it?
 
[10/12/2014 17:35:20] The OTX Server Version: (2.90 - 4539) - Codename: (Galaxy) 8.60
i have no idea what tfs version it is sorry limos:(

config.php version part
Code:
// Available options: TFS_02, TFS_03
    // TFS 0.2 = TFS_02
    // TFS 0.3 = TFS_03 (If ur using 0.3.6, set $config['salt'] to false)!
    // TFS 0.4 = TFS_03
    $config['TFSVersion'] = 'TFS_02';
 
In TFS 0.3 and similar versions it's indeed called town instead of town_id.
Do you still get an error about town_id? Look if there is any you missed.
 
All "town_id" were replaced to "town'
now i get this error

string(115) "SELECT `name`, `level`, `vocation`, `lastlogin`, `online`, `sex`, `group_id`, `town` FROM `players` WHERE `id` = 1;"
(query - SQL error)
Type: select_single (select single row from database)

Unknown column 'town' in 'field list'
 
Back
Top