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

Linux When i Open the Server

Vrotz

Member
Joined
Apr 7, 2011
Messages
1,071
Reaction score
7
Location
Brazil
Hello,

I've this error when I execute the server on my Ubuntu 10.04.

Code:
mysql_real_query(): SELECT `house_id`, `data` FROM `tile_store` WHERE `world_id` = 0 - MYSQL ERROR: Table 'enforced.tile_store' doesn't exist (1146)


What is that?
 
Execute following query on PMA:

SQL:
CREATE TABLE `tile_store`
(
        `house_id` INT UNSIGNED NOT NULL,
        `world_id` TINYINT(4) UNSIGNED NOT NULL DEFAULT 0,
        `data` LONGBLOB NOT NULL,
        FOREIGN KEY (`house_id`) REFERENCES `houses` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
 
Code:
1005 - Can't create table 'enforced.tile_store' (errno: 150) (<a href="server_engines.php?engine=InnoDB&amp;page=Status&amp;token=f2dfc93a2f2d51241da93446ee6e4129">Detalhes...</a>)
 
Back
Top