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

Can't get schema version! Does `schema_info` exist?

ibarhim_95

New Member
Joined
Jan 1, 2011
Messages
53
Reaction score
3
Location
Sweden
:: OTServ Version 0.6.4_SVN
:: ============================================================================
::
:: Initializing the random numbers... [done]
:: Loading lua script config.lua... [done]
:: Using data directory data/... [done]
:: Checking Database Connection...
[Warning] max_allowed_packet might be set too low for binary map storage.
Use the following query to raise max_allow_packet: SET GLOBAL max_allowed_packet = 16777216;[done]
:: Checking Schema version... mysql_real_query(): SELECT `value` FROM `schema_info` WHERE `name` = 'version';: MYSQL ERROR: Table 'otserv.schema_info' doesn't exist
mysql_store_result(): SELECT `value` FROM `schema_info` WHERE `name` = 'version';: MYSQL ERROR: Table 'otserv.schema_info' doesn't exist




Can someone help me Pls
 
:: OTServ Version 0.6.4_SVN
:: ============================================================================
::
:: Initializing the random numbers... [done]
:: Loading lua script config.lua... [done]
:: Using data directory data/... [done]
:: Checking Database Connection...
[Warning] max_allowed_packet might be set too low for binary map storage.
Use the following query to raise max_allow_packet: SET GLOBAL max_allowed_packet = 16777216;[done]
:: Checking Schema version... mysql_real_query(): SELECT `value` FROM `schema_info` WHERE `name` = 'version';: MYSQL ERROR: Table 'otserv.schema_info' doesn't exist
mysql_store_result(): SELECT `value` FROM `schema_info` WHERE `name` = 'version';: MYSQL ERROR: Table 'otserv.schema_info' doesn't exist




Can someone help me Pls
Just do what it says, go into the database click on the sql tab and paste in, click the go button.
Code:
SET GLOBAL max_allowed_packet = 16777216;
For the other error try this, same as above copy and paste.
Code:
CREATE TABLE `schema_info` (
    `name` VARCHAR(255) NOT NULL,
    `value` VARCHAR(255) NOT NULL,
    PRIMARY KEY (`name`)
) ENGINE = InnoDB;

INSERT INTO `schema_info` (`name`, `value`) VALUES ('version', 25);
 
a>
a>
a>


My shop system doesn't work. :/

a>


My shop system doesn't work. :/
Just do what it says, go into the database click on the sql tab and paste in, click the go button.
Code:
SET GLOBAL max_allowed_packet = 16777216;
For the other error try this, same as above copy and paste.
Code:
CREATE TABLE `schema_info` (
    `name` VARCHAR(255) NOT NULL,
    `value` VARCHAR(255) NOT NULL,
    PRIMARY KEY (`name`)
) ENGINE = InnoDB;

INSERT INTO `schema_info` (`name`, `value`) VALUES ('version', 25);



My shop system doesn't work. :/
a>
 
Back
Top