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

myacc problem gift

Update your database. Table z_shop_categories does not exist. Or execute this SQL query:

SQL:
CREATE TABLE IF NOT EXISTS `z_shop_category` (
    `id` int(11) NOT NULL ,
    `name` varchar(50) NOT NULL,
    `desc` varchar(255) NOT NULL,
    `button` varchar(50) NOT NULL,
    `hide` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
Insert this command into your SQL:
SQL:
ALTER TABLE z_shop_category
ADD hidden int(11) NOT NULL DEFAULT '0';

Most likely will fix your issue.
 
You can change de column name or clause where in Lua. You need to see what will better.

Change the query that Loney did to (run this query once):
Lua:
DROP TABLE IF EXISTS `z_shop_category`;

CREATE TABLE IF NOT EXISTS `z_shop_category` (
    `id` int(11) NOT NULL ,
    `name` varchar(50) NOT NULL,
    `desc` varchar(255) NOT NULL,
    `button` varchar(50) NOT NULL,
    `hidden` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
Back
Top