Jump to content

v3.0.5


Guest

Recommended Posts

For those of you who have stumbled over the same error that i did when upgrading to v3.0.5 it would appear that a table is missing from database called cat_lang to fix this simply access ur phpmyadmin and open your database then using sql tool copy/paste this to make new table

CREATE TABLE `CubeCart_cats_lang` (

`id` int(11) NOT NULL auto_increment,

`cat_master_id` int(11) NOT NULL default '0',

`cat_lang` varchar(20) NOT NULL default '',

`cat_name` varchar(255) NOT NULL default '',

KEY `id` (`id`)

) ENGINE=MyISAM;

if you have a prefix make sure to put it in like this

CREATE TABLE 'prefix here_CubeCart_cats_lang` (

`id` int(11) NOT NULL auto_increment,

`cat_master_id` int(11) NOT NULL default '0',

`cat_lang` varchar(20) NOT NULL default '',

`cat_name` varchar(255) NOT NULL default '',

KEY `id` (`id`)

) ENGINE=MyISAM;

hope this helps ;)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...