What I want you to try is this:
First, go into your database, (phpMyAdmin), and open up your database so you see the tables. As you said, there was no "nuke_groups_info" originally, NOTE: I don't care what Guardian2003 says, he is giving you coding for "nuke_groups" and not the table that the mod is looking for as you stated.
Once your there, if you still have the "nuke_groups_info" table you created, remove it, then at the top, click the "SQL" tab, and copy and paste this code into the textarea.
| Code:
|
--
-- Table structure for table `nuke_groups_info`
--
DROP TABLE IF EXISTS `nuke_groups_info`;
CREATE TABLE IF NOT EXISTS `nuke_groups_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`desc` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
--
-- Dumping data for table `nuke_groups_info`
--
INSERT INTO `nuke_groups_info` (`id`, `desc`) VALUES
(1, 'Personal user''s Journal entry. Valid for publics and privates entries'),
(2, 'Get points for commenting in a public user''s Journal'),
(3, 'Get points for sending the link to our site to a friend via Recommend Us Module'),
(4, 'News that the user sends from Submit News module and then published by the administrator'),
(5, 'Get points for commenting on any article and/or news'),
(6, 'Each article''s or news has an option to send it to a friend. Points valid for each time the user sends the article to a friend'),
(7, 'Get points voting for any article'),
(8, 'Get points for voting for any survey, actual or old ones are valid'),
(9, 'Comment published for any actual or old survey'),
(10, 'Get points for opening a new thread in the Forums'),
(11, 'Forums threads answered or replied'),
(12, 'Comment published for any review in the Reviews module'),
(13, 'Get points for each page view. Valid for any page of the site'),
(14, 'Get points for visiting any resource on WebLinks module'),
(15, 'Get Points for voting for a resource in WebLinks module'),
(16, 'Comments posted on any resource in the WebLink module'),
(17, 'Get points for downloading any file or resource on Downloads module'),
(18, 'Get points for voting for a resource in Downloads module'),
(19, 'Comments posted on any resource in the Downloads module'),
(20, 'Get points for publishing a public message using the Broadcast message system'),
(21, 'Get points for clicking on a banner');
|
Then, I want you to install this mod as your supposed to with the un modified code that you did to try to make it work off the nuke_groups table.
It should not longer have a problem finding that table for there it is.
From the beginning, it seemed all you were having a problem with was the script looking for the table nuke_groups_info and instead of getting that table and what was needed by that mod, you guys went into different direction and went after the table nuke_groups which is a completely different table all together.
|