Hi everyone, im having problems with the forums, from admin i have gone to orca forum> manage forum> new forum> created new forum> click onto the new forum i created and it says "there are no topics in this forum" nowhere does is give me the option to add a topic to the forum :(
Any help would be great.
Cheers,
Charlie
You Creature!! |
How to manage forum: 1) Add new groups 2) Add new forums bellow your groups
Add new groupe -> click on the link New Group Add new forum -> click on the folder icon to right side for the group were you will add a new forum bellow
Boonex forum
Groupe -> Dolphin
Forum -> Dolphin 7.0 Dolphin 6.1 Dolphin Betas And RCs Dolphin Hosting Dolphin Bug Reports Extensions Development Tips, Tricks and Sharing |
Thanks for that, now im having a problem trying to install the groups mod, when i try to install from the admin>modules>groups i get this error:
Installation of: Groups Failed
-- Changing database: -- -- There are errors in the following MySQL queries: -- -- Error:
INSERT INTO `sys_menu_top`(`ID`, `Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(NULL, 4, 'Groups', '_bx_groups_menu_my_groups_profile', 'modules/?r=groups/browse/my', @iCatProfileOrder, 'memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
You Creature!! |
You Creature!! |
Unfortunately that sql error you posted is missing the actual reason why it failed. Kinda makes figuring it out impossible.
Have you have this module installed before?
It's crapping out when trying to insert the menu item, so i am guessing maybe it already sees it there. Just a guess because as i said. The reason for the error is not shown in what you posted.
https://www.deanbassett.com |
This error typically occurs on sites that have a modified menu system or with menus where the items have been moved around. The solution below should work.
In modules\boonex\groups\install\sql\install.sql
FIND :
SET @iCatProfileOrder := (SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 9 ORDER BY `Order` DESC LIMIT 1);
REPLACE WITH :
SET @iCatProfileOrder := IFNULL((SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 9 ORDER BY `Order` DESC LIMIT 1),1);
ALSO FIND :
SET @iCatProfileOrder := (SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 4 ORDER BY `Order` DESC LIMIT 1);
REPLACE WITH :
SET @iCatProfileOrder := IFNULL((SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 4 ORDER BY `Order` DESC LIMIT 1),1);
Thanks for that, now im having a problem trying to install the groups mod, when i try to install from the admin>modules>groups i get this error:
Installation of: Groups Failed
-- Changing database: -- -- There are errors in the following MySQL queries: -- -- Error:
INSERT INTO `sys_menu_top`(`ID`, `Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(NULL, 4, 'Groups', '_bx_groups_menu_my_groups_profile', 'modules/?r=groups/browse/my', @iCatProfileOrder, 'memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
Thanks modzzz that worked a treat :)
cheers
Charlie
This error typically occurs on sites that have a modified menu system or with menus where the items have been moved around. The solution below should work.
In modules\boonex\groups\install\sql\install.sql
FIND :
SET @iCatProfileOrder := (SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 9 ORDER BY `Order` DESC LIMIT 1);
REPLACE WITH :
SET @iCatProfileOrder := IFNULL((SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 9 ORDER BY `Order` DESC LIMIT 1),1);
ALSO FIND :
SET @iCatProfileOrder := (SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 4 ORDER BY `Order` DESC LIMIT 1);
REPLACE WITH :
SET @iCatProfileOrder := IFNULL((SELECT MAX(`Order`)+1 FROM `sys_menu_top` WHERE `Parent` = 4 ORDER BY `Order` DESC LIMIT 1),1);
Thanks for that, now im having a problem trying to install the groups mod, when i try to install from the admin>modules>groups i get this error:
Installation of: Groups Failed
-- Changing database: -- -- There are errors in the following MySQL queries: -- -- Error:
INSERT INTO `sys_menu_top`(`ID`, `Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(NULL, 4, 'Groups', '_bx_groups_menu_my_groups_profile', 'modules/?r=groups/browse/my', @iCatProfileOrder, 'memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
You Creature!! |