Dropkick CMS by yuzoolthemes ~~PLEASE HELP~~

Has anybody had any luck updating Dropkick CMS from 1.0.5 to 1.1, while maintaining the current items in the database?

I have already followed the directions from Michael’s Read-Me Guide, for a manual update. I have FTP’d the files to the server, and I have attempted to do the following, as indicated in the Read-Me Guide, but it returns in an error every time…

And make the following database changes:
INSERT INTO menu (id, title, name_encoded, rights) VALUES
(NULL, ‘Categories’, ‘category_list’, ‘Admin’);
CREATE TABLE IF NOT EXISTS category (
id INT UNSIGNED AUTO_INCREMENT NOT NULL,
name VARCHAR(40) DEFAULT ““ NOT NULL COMMENT ”category
name”,
created_on DATETIME NOT NULL,
updated_on DATETIME NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY (name)
) ENGINE=“MyISAM” COMMENT = “categories” CHARACTER SET utf8
COLLATE utf8_unicode_ci;
INSERT INTO category (id, name, created_on, updated_on)
VALUES (‘1’, ‘top level’, NOW(), NOW() );
ALTER TABLE divs ADD category_id INT UNSIGNED DEFAULT “1”
AFTER active;
ALTER TABLE divs ADD INDEX index_category_id( category_id );

I have reached out to yuzoolthemes for help on quite a few occasions, but have not received a viable response in over a month long period.

Can anybody help me out with this? I have been unable to use the CMS portion of our website since the update was started…

We would really love to be able to use this portion of our website again.

Thank you in advance,
Bobby

Here is a screen shot of what is missing…

Thanks @bobby.tracy87 and glad we solved this by email :slightly_smiling:

1 Like