Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Beta Releases

Reply
 
Thread Tools
GRPS: Commune For Groups (Dev:Beta) Details »»
GRPS: Commune For Groups (Dev:Beta)
Version: 1.00, by sabret00the sabret00the is offline
Developer Last Online: Apr 2010 Show Printable Version Email this Page

Version: 3.0.7 Rating:
Released: 03-25-2005 Last Update: 05-15-2005 Installs: 9
DB Changes
Is in Beta Stage  
No support by the author.

It's in beta but it's only on like beta 3 lol, basically it's got a few bugs in it, i couldn't fix and i knew that their were one or two people that wanted this, as it's more a dev version i'm gonna forego the big sale and just tell you what it does

what's it do: it enables groups to talk.

live demo: www.ebslive.com/groups

spawning: https://vborg.vbsupport.ru/showthread.php?t=58283

ok now you've checked all that info out, let's get on with it, i'm posting this here simply because i need the help of the coders here, it's no one of those hacks where you can install, report a bug and expect a fix in a matter of hours, infact it's more like report a bug and post the fix with it.

known bugs:
postings.php: let's just say the file don't work at all
viewthread.php: can't get the posting behaviour right, you can't quote at the moment for some reason and the quick reply is just generally quirky, the WYSIWYG don't work so right now it loads the Enhanced instead.


ok regarding credit: i need to thank everyone here, marco, kirby, dean, stefan, revan, filburt, amy, noppid, brad and many more, a second thanks to stefan and marco who seemed more than willing to help me with so much including stupid questions i should've known, the everybody who's a mod of the php forum who didn't ban me.

ok now to get on with it.

here you go, test and hopefully i'll be able to get a final out sometime soon

latest upload: 06/05/05 12:52 (GMT)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 03-26-2005, 09:42 PM
nexialys
Guest
 
Posts: n/a
Default

FIRST DEBUG SESSION:
in the install process:

file to edit:
install/hacks/GRPS/x/queries.php

$query['new'][] = 'ALTER TABLE ' . TABLE_PREFIX . 'usergroup ADD arcadepermissions INT(10) UNSIGNED DEFAULT 0 NOT NULL';

is useless, and try to override some ARCADE permission..
EDIT: not useless, just error:
$query['new'][] = 'ALTER TABLE ' . TABLE_PREFIX . 'usergroup ADD grpspermissions INT(10) UNSIGNED DEFAULT 0 NOT NULL';


also, change the " ` " for " \' " .. or the queries does not finish in some mysql servers.
.. and these queries at the end ... $query['new'][] = 'INSERT INTO grps_categories
are missing their ending " ) " ...

OTHER EDIT:

??In your /forums/includes/functions_bbcodeparse.php file:

.. there is two occurences of what you need to replace... this is not stated in the process...

??In your /forums/clientscript/vbulletin_editor.js.php file:

this thing to modify:

window.open("../forums/misc.php

you need to edit it more properly and indicate the proper url to your forum, the ../forum is not the same for everyone!

??In your /forums/admincp/adminfunctions_template.php file:

'groups' => 'GRPS', <<< add the " ' " please... to be PHP perfect!

??In your /forums/includes/functions.php file:

\/\/ declares the arcade image directory <<< ARCADE ghost ?!
these \/\/ are not legal comments... use // always !!!



??In your navbar template:

search have to be modified for a default install (missing the accesskey thing!):
<span class="navbar"><a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1">$vboptions[bbtitle]</a></span>

and replaced by this:
<span class="navbar"><a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1">$vboptions[hometitle]<if condition="THIS_AREA == groups"> Groups<else /> $vboptions[bbtitle]</if></a></span>

(btw, will need a $vbphrase for the title!)
Reply With Quote
  #13  
Old 03-26-2005, 10:50 PM
nexialys
Guest
 
Posts: n/a
Default

ok, more debugs:

big problem about urls and paths... on a clean install, there is no modification forcing to add complete paths for images and javascripts, even if you added some in this install...

you will need something like in vBadvanced... ya know, this:
PHP Code:
    $navreplace['find'] = array(
        
'"clientscript',
        
'\'misc.php',
        
'>$vboptions[bbtitle]',
        
'"$vboptions[forumhome].php'
    
);
    
    
$navreplace['replace'] = array(
        
'"' $vboptions['bburl'] . '/clientscript',
        
'\'' $vboptions['bburl'] . '/misc.php',
        
'>$vboptions[hometitle]',
        
'"$vboptions[homeurl]'
    
);
    
$navreplace construct_replacement_array($navreplacearray$navreplace);
    
    
$templatecache['navbar'] = str_replace($navreplace['find'], $navreplace['replace'], $templatecache['navbar']); 
...
Reply With Quote
  #14  
Old 03-27-2005, 01:37 AM
Lionel Lionel is offline
 
Join Date: Dec 2001
Location: Delray Beach, Florida
Posts: 3,277
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

so, nexialys, does it have your blessing now?
Reply With Quote
  #15  
Old 03-27-2005, 03:35 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Looking forward to this when all the bugs are worked out.
Reply With Quote
  #16  
Old 03-27-2005, 03:40 AM
Lionel Lionel is offline
 
Join Date: Dec 2001
Location: Delray Beach, Florida
Posts: 3,277
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

more debugging...

grps_catergories in cat_editor has to be fixed. Table name is grps_categories

you have that typo in all admin files, search.php and index.php

Where are the settings phrases?

a lot of the phrases should in front-end error messages instead of redirect

mysql error: Unknown column 'grps_setting.hide_image' in 'field list' in group.php for table grps_setting

I wonder what this 'grps_setting.hide_image' is? I encountered it twice. I removed in groups.php so I could explore further... then it came back again in invitation.php

The whole idea is great, but as posted above, paths and urls are a nightmare.
Reply With Quote
  #17  
Old 03-27-2005, 07:01 AM
Deaths Deaths is offline
 
Join Date: Oct 2004
Location: Europe, Belgium
Posts: 679
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just realised it overwrites some arcade permitions, had to uninstall...
Reply With Quote
  #18  
Old 03-27-2005, 09:26 AM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok re-uploaded with all the simpler stuff, also fixed the problem with the hide_image it was added inbetween builds so was only in the update thus never made it into the original installer. the arcade thing is sorted and that's set back to grpspermissions, saying that deaths it should've never actually tried to use the arcade permissions, it should've just not saved permissions.

Quote:
Originally Posted by nexialys
ok, more debugs:

big problem about urls and paths... on a clean install, there is no modification forcing to add complete paths for images and javascripts, even if you added some in this install...

you will need something like in vBadvanced... ya know, this:
PHP Code:
$navreplace['find'] = array(
        
'"clientscript',
        
'\'misc.php',
        
'>$vboptions[bbtitle]',
        
'"$vboptions[forumhome].php'
    
);
    
    
$navreplace['replace'] = array(
        
'"' $vboptions['bburl'] . '/clientscript',
        
'\'' $vboptions['bburl'] . '/misc.php',
        
'>$vboptions[hometitle]',
        
'"$vboptions[homeurl]'
    
);
    
$navreplace construct_replacement_array($navreplacearray$navreplace);
    
    
$templatecache['navbar'] = str_replace($navreplace['find'], $navreplace['replace'], $templatecache['navbar']); 
...
did the stuff in the functions_grps.php not fix the image problem, i'll definately have to look into it for the jscript and will do the images too if that didn't work.

Quote:
Originally Posted by lsmba
If I may...sounds good...thanks for the contribution! But, is this like a "partitioning off" so-to-speak of the existing vbulletin forum?

And can't this be done already with the existing vbulletin 3.07? Just a little confused as to what this hack "really" can do...thanks for the input.

lsmba
yup alot like partitioning off the forums, if you have loads of sub-forums this is designed to remove them to something more managable :ermm: lol.

and nope the existing vB3 setup doesn't offer this functionality. though the groups thing is available , it doesn't offer the groups pages with the same effectivenes :nervous:

i'll get round to working on documenting stuff and explaining stuff in the installer a bit later today, just in the middle of trying to find my bug logs
Reply With Quote
  #19  
Old 03-28-2005, 02:38 AM
Lionel Lionel is offline
 
Join Date: Dec 2001
Location: Delray Beach, Florida
Posts: 3,277
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in editgroup.php, I don't understand why


PHP Code:
 if ($bbuserinfo[groupid] == 6)
 {
  if (
$groupinfo['hidden_group'])
  {
   
$checked['hidden_group'] =HTML_CHECKED;
  }
 } 
This is causing the checkbox not to be marked check for hidden group, even for the admin who created group.

I commented out //if ($bbuserinfo[groupid] == 6) and checkbox displays properly. I failed to see the logic of that line. If a group owner who is the only one who has access to the group magement wants to know the status of his group, why can't he?
Reply With Quote
  #20  
Old 03-28-2005, 04:08 AM
Polo's Avatar
Polo Polo is offline
 
Join Date: Jun 2004
Posts: 893
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Look really nice!!! thanks sabret00the for releaseing it... will give it a try once most of the bugs are fixed again... thanks it looks great!
Reply With Quote
  #21  
Old 03-28-2005, 04:12 AM
phreak420 phreak420 is offline
 
Join Date: Jan 2005
Location: IL
Posts: 35
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Polo
Look really nice!!! thanks sabret00the for releaseing it... will give it a try once most of the bugs are fixed again... thanks it looks great!
I second that.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:35 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.04613 seconds
  • Memory Usage 2,320KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (9)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete