vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   [HTL] & [Normal] Shoutbox Hack - 1.03d (https://vborg.vbsupport.ru/showthread.php?t=59985)

sabret00the 03-24-2004 08:32 AM

Quote:

Originally Posted by Link14716
Paste about 20 lines above and below that line from admincp/usergroup.php and I'll see if I can find what went wrong. When it is working, update a usergroup and the no permission screems should go away.

Code:

        if ($_REQUEST['do'] == 'add')
        {
                if (!empty($_REQUEST['defaultgroupid']))
                {
                        // set defaults to this group's info
                        $defaultgroupid = intval($_REQUEST['defaultgroupid']);
                        $usergroup = $DB_site->query_first("
                                SELECT * FROM " . TABLE_PREFIX . "usergroup
                                WHERE usergroupid = $defaultgroupid
                        ");

                        $ug_bitfield = array();
                        foreach($_BITFIELD['usergroup'] AS $permissiongroup => $fields)
                        {
                                $ug_bitfield = array_merge(convert_bits_to_array($usergroup["$permissiongroup"], $fields) , $ug_bitfield);
                        }
                }
                else
                {
// [START HACK='Shoutbox Hack' AUTHOR='squall14716' VERSION='1.03' CHANGEID= 3 ]
                        // set default yes permissions (bitfields)
                        $ug_bitfield = array(
                                'showgroup' => 1, 'canview' => 1, 'canviewmembers' => 1,
                                'canviewothers' => 1, 'cagetattachment' => 1, 'cansearch' => 1,
                                'canmodifyprofile' => 1, 'canthreadrate' => 1, 'canpostattachment' => 1,
                                'canpostpoll' => 1, 'canvote' => 1, 'canwhosonline' => 1,
                                'allowhidden' => 1, 'showeditedby' => 1, 'canseeprofilepic' => 1,
                                'canusesignature' => 1, 'shoutview' => 1, 'shoutpost' => 1, 'shoutedit' => 1,
                                'shoutdelete' => 1, 'shouthdelete' => 0, 'shouteditothers' => 0,
                                'shoutdeleteothers' => 0, 'shouthdeleteothers' => 0, 'shoutip' => 0,
                                'shoutcoventry' => 0
                        );
                        // set default numeric permissions
                        $usergroup = array(
                                'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
                                'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000,
                                'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000,
                                'shouthierarchy' => 5, 'shoutmaxdaily' =>0
                        );
// [END HACK='Shoutbox Hack' AUTHOR='squall14716' VERSION='1.03' CHANGEID= 3 ]                }
                print_table_header($vbphrase['add_new_usergroup']);
        }
        else
        {
                $usergroupid = intval($_REQUEST['usergroupid']);
                $usergroup = $DB_site->query_first("
                        SELECT * FROM " . TABLE_PREFIX . "usergroup
                        WHERE usergroupid = $usergroupid
                ");

                $ug_bitfield = array();
                foreach($_BITFIELD['usergroup'] AS $permissiongroup => $fields)
                {
                        $ug_bitfield = array_merge(convert_bits_to_array($usergroup["$permissiongroup"], $fields) , $ug_bitfield);
                }
                construct_hidden_code('usergroupid', $usergroupid);
                print_table_header(construct_phrase($vbphrase['x_y_id_z'], $vbphrase['usergroup'],$usergroup[title], $usergroup[usergroupid]), 2, 0);
        }

hope this helps

Link14716 03-24-2004 10:44 AM

I see the problem.
Code:

// [END HACK='Shoutbox Hack' AUTHOR='squall14716' VERSION='1.03' CHANGEID= 3 ]                }
Change that to
Code:

// [END HACK='Shoutbox Hack' AUTHOR='squall14716' VERSION='1.03' CHANGEID= 3 ]
                }

Now edit and save a usergroup to update the cache and you should be all set. :)

sabret00the 03-24-2004 11:00 AM

thanks that totally fixed the usergroup problems btw :D

ok more issues :(

the templates are all ++++ed up in there

all my shouts are by 0

and everytime i try to make a shout i get "you cannot make a blank shout.

also the box thing(table) for my shoutbox on the forumhome isn't there :(

oh and everytime i try to make a shout on the forum home it puts me inside the shoutbox :(

djohn 03-24-2004 01:29 PM

Thanks for your reply, Link14716. I've done all the edits that you suggested and now my shout box looks like this:
The grey part still remains on the right of shoutbox, the left is okay. Is there any way to remove that grey part?

PS: Your shoutbox owns no matter what! Any news about the release date of 1.04? Also, how ill the updating thing work? Will it update fine, even if I have customized some shoutbox templates?

sabret00the 03-24-2004 01:41 PM

Quote:

Originally Posted by sabret00the
thanks that totally fixed the usergroup problems btw :D

ok more issues :(

the templates are all ++++ed up in there

all my shouts are by 0

and everytime i try to make a shout i get "you cannot make a blank shout.

also the box thing(table) for my shoutbox on the forumhome isn't there :(

oh and everytime i try to make a shout on the forum home it puts me inside the shoutbox :(

fixed the templates, although will mod further :)

sabret00the 03-24-2004 02:13 PM

solved all the problems now :D

except i think the shoutbox templates need reviewing :(

Red Blaze 03-24-2004 06:12 PM

I'm not sure if it's because of the upgrade or something but EVERYONE can edit everyone's comment. That includes delete messages, edit messages, even mine. I know this because I tried it as guest. Also, I have it so that guests can not see the shout box, but they can see it anyway. And they can't post a comment in the home forum, but they can post a message in the shoutbox.php. Guests can do everything an admin can do in the shout box, that goes with every other group. Is this because of VB3 Gold? The files are alittle different?

ChurchMedia 03-24-2004 07:57 PM

Sorry if this was posted already -- can't find it. Phrases are not showing up on forum home. shoutbox.php is fine.

Any ideas?


Great hack, BTW! :)

Red Blaze 03-25-2004 01:55 AM

Did you edit the index.php? and/or if you added the phrases. If you added the phrases, then you have to edit index.php.

sabret00the 03-25-2004 01:26 PM

i seem to have an issue where only admins can shout?

keep on getting a message about "your usergroup doesn't have permission"


All times are GMT. The time now is 09:41 PM.

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.01737 seconds
  • Memory Usage 1,755KB
  • 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
  • (3)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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