7
ok found it.. here's what to do
1. unzip
2. upload include folder to your XOOPS root folder
3. upload language folder to your XOOPS root
4. upload modules folder to XOOPS root
5. upload register.php to your XOOPS root
6. edit the mysql.txt file.. no need to do this if u kept the default XOOPS prefix when installing xoops.
7 go into phpmyadmin and run the txt file as a query.. alternatively.. run this query :
INSERT INTO `xoops_config` (
`conf_id` ,
`conf_modid` ,
`conf_catid` ,
`conf_name` ,
`conf_title` ,
`conf_value` ,
`conf_desc` ,
`conf_formtype` ,
`conf_valuetype` ,
`conf_order`
) VALUES (
'', '0', '2', 'req_user_regkey', '_MD_AM_REQREGKEYS', '0', '_MD_AM_REQREGKEYSDSC', 'yesno', 'int', '0');
CREATE TABLE `xoops_regkeys` (
`keyid` TINYINT UNSIGNED NOT NULL AUTO_INCREMENT,
`name` VARCHAR( 60 ) NOT NULL ,
`code` VARCHAR( 20 ) NOT NULL ,
`status` TINYINT UNSIGNED DEFAULT '1' NOT NULL ,
`groups` VARCHAR( 100 ) DEFAULT '[2]' NOT NULL ,
UNIQUE (
`keyid` ,
`name` ,
`code`
)
);
then delete adminmenu.php fromm the XOOPS root/cache folder
Update the XOOPS admin system module.. and that's it..
in XOOPS admin system module, general settings should be an entry to enable disable..
click the system icon so u get the full menu across the screen. and you'll see the menu item for reg keys in the menu (i don't think it appeared in the popup when i did it)