Jump to content

dropped cubecart blocker


slic535

Recommended Posts

i have no idea what you mean by 'dropped category section'. do you mean that you accidentally deleted the table 'cubecart_blocker'? (in sql language, that means 'drop table'.)

yes i was in my phpadmin and i accidentaly pushed the red x on it. do you know how i can get it back?

Link to comment
Share on other sites

phpadmin has a place where you can enter a sql statement:

CREATE TABLE `prefix_CubeCart_blocker` (

`id` int(11) NOT NULL auto_increment,

`browser` text,

`ip` varchar(15) NOT NULL,

`username` varchar(50) NOT NULL,

`blockTime` int(10) NOT NULL default '0',

`blockLevel` int(1) NOT NULL default '0',

`loc` char(1) NOT NULL,

`lastTime` int(10) NOT NULL,

KEY `id` (`id`)

) ENGINE=MyISAM AUTO_INCREMENT=1;

pay attention to prefix_ and make it what all the other tables have as your prefix.

the above is taken from the install folder of cubecart 3.0.20

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...