vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - GRPS: Groups Commune 2.0.x (https://vborg.vbsupport.ru/showthread.php?t=127303)

sabret00the 02-21-2007 02:03 PM

Quote:

Originally Posted by aacircle (Post 1167717)
I would like to know what tables are altered and created please. Is all data related to this addon in their own tables or do they manipulate vbulletin tables?

If I don't like this product, what steps are required to uninstall it totally? I hope you can continue to support this product for years to come and even perhaps get a team to take it under their wings should you not have the time.

Thank you.

to uninstall completely remove the plugin and run the un-installation script as provided.

sabret00the 02-21-2007 02:06 PM

Quote:

Originally Posted by nlarnold (Post 1168499)
I'm getting really confused about the navigation links. I've scoured this thread and still don't understand how to fix this problem. Here we go:

vbulletin is in "forum" directory
groups is in "groups directory

When navigating the site I always end up back in the forum directory. The usercp is in forum, the faq is in forum, all the nav bar links go to forum, so once your there there is no way to go back to groups. How do I keep a visitor in the groups where they're supposed to be. If they end up on the forums index page, they will be totally lost.

It's my understanding that the groups runs as a separate little world using parts of the "forum" where necessary. The more I read the more confused I'm getting.

I have a couple of other minor issues, but I really need to get a handle on this navigation thing. Any help and explanations would be greatly appreciated.

Thank you,
Nicole
VB newbie

Quote:

Originally Posted by nul7 (Post 1169045)
^^ same problem we're having. There's no breadcrumb back to the groups home. We just have to tell people to hit the groups link in the navbar until there is a solution.

EDIT: One more thing, is it not possible to allow Super Moderators to moderate the groups? I've set it in their permissions to allow moderation, but they cannot access it.

i'm curious, do you both have vBaCMS installed?

sabret00the 02-21-2007 02:07 PM

Quote:

Originally Posted by aacircle (Post 1169690)
I'm just curious is there a way that groups can be awarded points based on the actions of group members. Such good deeds as good posting etc., helpful advisce and so on.

there is no inclusive points system. though hooks are in place to integrate with another points system

sabret00the 02-21-2007 02:08 PM

Quote:

Originally Posted by mescalin (Post 1170045)
i am looking for posts but i coulndt find the answer, its more than 70pages, sorry if asked before..

vbulletin in /forum
groups /group directories in the root..


In usercp etc , there is no link anywhere from forum to groups, i did the template edits but i dont know why its not working.. its working if i enter from /groups directly..

If yu have a group or you are a member, it still says is not a memeber of any group in orum profiles..

that's a strange one i'm stomped.

sabret00the 02-21-2007 02:11 PM

Quote:

Originally Posted by aacircle (Post 1170370)
The install file doesn't show what tables are created. How would one go about uninstalling this product?

It would be so much better if this product didn't touch the vbulletin tables. I'm assuming from your above comments it does.

straight from the install file:
PHP Code:

$db->query_write("
    ALTER TABLE `" 
TABLE_PREFIX "usergroup` ADD `grpspermissions` INT(10)  UNSIGNED DEFAULT 0 NOT NULL
"
);

$db->query_write("
    ALTER TABLE `" 
TABLE_PREFIX "user` ADD `grps` MEDIUMTEXT NULL
"
);

$db->query_write("
    CREATE TABLE `grps` (
        `groupid` mediumint(9) NOT NULL auto_increment,
        `title` varchar(50)  NOT NULL default '',
        `description` varchar(250)  NOT NULL default '',
        `catid` smallint(2) NOT NULL default '0',
        `approved` enum('0','1')  default NULL,
        `create_date` int(10) unsigned NOT NULL default '0',
        `replycount` int(10) unsigned NOT NULL default '0',
        `lastpost` int(11) NOT NULL default '0',
        `membercount` int(10) unsigned NOT NULL default '0',
        `leaderid` int(10) default NULL,
        PRIMARY KEY  (`groupid`)
    )
"
);

$db->query_write("
    CREATE TABLE `grps_categories` (
        `catid` tinyint(3) unsigned NOT NULL auto_increment,
        `title` varchar(25)  NOT NULL default '',
        `description` varchar(250)  default NULL,
        PRIMARY KEY  (`catid`)
    )
"
);

$db->query_write("
    CREATE TABLE `grps_grouptext` (
        `groupid` mediumint(9) unsigned NOT NULL default '0',
        `pagetext` mediumtext  NOT NULL,
        `allowsmilie` enum('1','0')  default '1',
        `parseurl` enum('1','0')  default '1',
        `edit_reason` varchar(200)  default NULL,
        `edit_dateline` int(10) unsigned default NULL,
        `edit_userid` tinyint(4) default NULL,
        `edit_username` varchar(50)  default NULL,
        PRIMARY KEY  (`groupid`)
    )
"
);

$db->query_write("
    CREATE TABLE `grps_post` (
        `postid` int(10) unsigned NOT NULL auto_increment,
        `threadid` int(10) NOT NULL default '0',
        `groupid` mediumint(9) unsigned NOT NULL default '0',
        `parentid` int(10) unsigned default NULL,
        `username` varchar(50)  NOT NULL default '',
        `userid` int(10) unsigned NOT NULL default '0',
        `title` varchar(250)  NOT NULL default '',
        `dateline` int(10) unsigned NOT NULL default '0',
        `pagetext` mediumtext  NOT NULL,
        `ipaddress` varchar(16)  NOT NULL default '',
        `iconid` smallint(5) unsigned NOT NULL default '0',
        `visible` smallint(6) NOT NULL default '0',
        `attach` smallint(5) unsigned NOT NULL default '0',
        `allowsmilie` enum('1','0')  default NULL,
        `showsignature` enum('0','1')  NOT NULL default '0',
        `edit_username` varchar(50)  default NULL,
        `edit_userid` int(10) default NULL,
        `edit_reason` varchar(200)  default NULL,
        `edit_dateline` int(10) unsigned default NULL,
        `delete_username` varchar(50)  default NULL,
        `delete_userid` int(10) default NULL,
        `delete_reason` varchar(200)  default NULL,
        PRIMARY KEY  (`postid`),
        KEY `threadid` (`threadid`),
        FULLTEXT KEY `title` (`title`,`pagetext`)
    ) ENGINE=MyISAM
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (1, 'Automotive', 'For groups pertaining to cars, bikes or such')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (2, 'Computers', 'For groups referring to computers, whether hardware, software or modding')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (3, 'Education', 'For groups regarding learning, whether it be help studying or school activities')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (4, 'Entertainment', 'For groups surrounding anything entertaining, visual or audio')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (5, 'Games', 'For groups surrounding games you love, digital, card or board')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (6, 'Health & Fitness', 'For groups pertaining to well-being')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (7, 'Home & Families', 'For groups regarding the home life')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (8, 'Lifestyles', 'For groups surrounding lifestyles whether it be goths, hippies, etc')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (9, 'Places & Travel', 'For groups referring to towns, cities and holidays')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (10, 'Religion & Belief', 'For groups surrounding christianity, islam, buddism, etc')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (11, 'Sports & Recreation', 'For groups referring to sports, whether it be Football, Cricket or Baseball teams')
"
);

$db->query_write("
    INSERT INTO `grps_categories` VALUES (12, 'Others', 'For everything else')
"
);

$db->query_write("
    CREATE TABLE `grps_setting` (
        `groupid` mediumint(9) unsigned NOT NULL default '0',
        `image_name` varchar(50)  default NULL,
        `private_posts` enum('0','1')  default '0',
        `moderate_members` enum('0','1')  default '0',
        `hidden_group` enum('0','1')  default '0',
        `hide_image` enum('0','1')  default '0',
        `edit_details` enum('1','0')  default '1',
        `leaderonly_threads` enum('0','1')  NOT NULL default '0',
        PRIMARY KEY  (`groupid`)
    )
"
);

$db->query_write("
    CREATE TABLE `grps_user` (
        `recordid` mediumint(9) NOT NULL auto_increment,
        `groupid` mediumint(9) NOT NULL default '0',
        `userid` int(10) NOT NULL default '0',
        `in_mod_queue` enum('0','1')  NOT NULL default '0',
        `join_date` int(10) unsigned NOT NULL default '0',
        PRIMARY KEY  (`recordid`)
    )
"
);

$db->query_write("
    CREATE TABLE `grps_thread` (
        `threadid` int(10) unsigned NOT NULL auto_increment,
        `groupid` int(10) NOT NULL default '0',
        `userid` int(10) NOT NULL default '0',
        `username` varchar(250)  NOT NULL default '',
        `title` varchar(250)  NOT NULL default '',
        `dateline` varchar(15)  NOT NULL default '',
        `iconid` int(10) NOT NULL default '0',
        `lastposterid` varchar(250)  NOT NULL default '',
        `lastpostdateline` varchar(250)  NOT NULL default '',
        `replies` int(10) NOT NULL default '0',
        `firstpostid` int(10) default NULL,
        `closed` enum('0','1') NOT NULL default '0',
        `stuck` enum('0','1') NOT NULL default '0',
        PRIMARY KEY  (`threadid`),
        KEY `groupid` (`groupid`,`lastposterid`)
    )
"
); 


Quote:

Originally Posted by aacircle (Post 1170370)
Does this product insert a copyright footer and if so, can it be removed?

with donation.

sabret00the 02-21-2007 02:44 PM

Quote:

Originally Posted by mescalin (Post 1170405)
logout does not work in groups view, because there is no login.php in the groups folder.. also same for usercp.php

can you try disabling all mods and checking the status over whether or not logging out works in groups on the default skin please.

sabret00the 02-21-2007 02:45 PM

Quote:

Originally Posted by RobParker (Post 1170629)
Installed this and it looks good so far.

One problem that's probably been answered but I can't find it in this huge thread...

When I go into a group and "post new thread" at the top of the new thread text box it says what Group I am in but when clicking on the link it just links to /groups/forumdisplay.php?f= which obviously doesn't work.

Any ideas?

fixed in 2.0.6

sabret00the 02-21-2007 02:48 PM

Quote:

Originally Posted by Merriweather (Post 1171593)
That makes sense. I would love to see it show the GRPS groups a member is a part of in the profile.

My biggest needed request is to be able to set group moderators -- users who can see private groups. Right now, only Admins can do that and I don't have the time to monitor all of my groups, I need to be able to assign more people. :)

private or hidden?

sabret00the 02-21-2007 06:16 PM

Quote:

Originally Posted by Merriweather (Post 1171744)
Another glitch. I have Quick reply turned off in my forum, but it's still active in GRPS. Needs to be the same as the forum settings.

Also, if I click "Advanced" instead of using the Quick Reply, it shows a preview at the top that looks like this:



Seems even without using it, the QR box gets a hard return entered causing that to happen.

oooh, can't replicate the <br /> one but fixed the other thing.

sabret00the 02-21-2007 06:17 PM

Quote:

Originally Posted by Merriweather (Post 1171745)
Another area that could be improved. When viewing a thread within a group, the breadcrumbs show:

Groups Home > Group Category > Group Name > Thread Title

But when you are posting a reply, the breadcrumbs are just

Groups Home > Thread Title

Breadcrumbs should keep the heirarchy even when posting, same as in the forums.

fixed


All times are GMT. The time now is 06:45 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02675 seconds
  • Memory Usage 1,820KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete