Jump to content

Admin features disabled for admin on CC3


Guest perfectpage

Recommended Posts

Guest perfectpage

Why is this happening? I installed CC3, but when I login to the admin panel I can only reach hardly any of the options, they all tell me to consult a super member.

Link to comment
Share on other sites

Guest besimtari

Why is this happening? I installed CC3, but when I login to the admin panel I can only reach hardly any of the options, they all tell me to consult a super member.

It looks like you are not a super Admin. You can check this at PhpMyAdmin.

Export the table `cubecartstoreCubeCart_admin_users` wich looks like this:

--

-- Table structure for table `cubecartstoreCubeCart_admin_users`

--

DROP TABLE IF EXISTS `cubecartstoreCubeCart_admin_users`;

CREATE TABLE `cubecartstoreCubeCart_admin_users` (

  `adminId` int(11) NOT NULL auto_increment,

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

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

  `password` varchar(32) NOT NULL default '',

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

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

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

  `notes` text,

  KEY `adminId` (`adminId`)

) TYPE=MyISAM AUTO_INCREMENT=2 ;

--

-- Dumping data for table `cubecartstoreCubeCart_admin_users`

--

INSERT INTO `cubecartstoreCubeCart_admin_users` VALUES (1, 'Admin name', 'Admin username', 'password for admin', '[email protected]', 4, 1, 'Here are the notes for this Admin user');

Make changes, if it is 0, for the row `isSuper`from 0 to number 1.

Link to comment
Share on other sites

As evilhomer said, this is an error with the original release of v3. Download the most recent version and you wont have this problem.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...