The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
![]() |
||||||||||||||||||||
![]() Re-released at https://vborg.vbsupport.ru/showthrea...790#post547790
Show Your Support
|
Comments |
#152
|
||||
|
||||
![]() Quote:
|
#153
|
|||
|
|||
![]()
not mine...
|
#154
|
||||
|
||||
![]()
Did you edit admincp/usergroup.php?
|
#155
|
||||
|
||||
![]()
It won't let me install on vb3 rc3. I've uninstalled the tables and the installfile won't start. "We have automatically detected your current shoutbox version, and it appears to be up-to-date."
|
#156
|
||||
|
||||
![]() Quote:
|
#157
|
|||
|
|||
![]()
Upgraded to vb RC3, shoutbox still works 100% , thanks
![]() |
#158
|
|||
|
|||
![]() Quote:
|
#159
|
||||
|
||||
![]() Quote:
Code:
// admincp/usergroup.php -+-+-+-+-+-+-+-+-+-+-+-+-+-+ // find -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // 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 ); // set default numeric permissions $usergroup = array( 'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000, 'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000, 'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000 ); // replace with -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // 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 ); // find -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ if ($usergroupid != 1) // Guests can not post attachments { print_table_header($vbphrase['attachment_permissions']); // add above -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ print_table_header($vbphrase['shoutbox_admin_permissions_title']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_canview'], 'usergroup[shoutview]', $ug_bitfield['shoutview']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_canshout'], 'usergroup[shoutpost]', $ug_bitfield['shoutpost']); print_input_row($vbphrase['shoutbox_admin_permissions_maxdaily'], 'usergroup[shoutmaxdaily]', $usergroup[shoutmaxdaily]); if ($usergroupid != 1) { // Allow guests to shout but do nothing else... print_yes_no_row($vbphrase['shoutbox_admin_permissions_canedit'], 'usergroup[shoutedit]', $ug_bitfield['shoutedit']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_candelete'], 'usergroup[shoutdelete]', $ug_bitfield['shoutdelete']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_canhdelete'], 'usergroup[shouthdelete]', $ug_bitfield['shouthdelete']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_caneditothers'], 'usergroup[shouteditothers]', $ug_bitfield['shouteditothers']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_candeleteothers'], 'usergroup[shoutdeleteothers]', $ug_bitfield['shoutdeleteothers']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_canhdeleteothers'], 'usergroup[shouthdeleteothers]', $ug_bitfield['shouthdeleteothers']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_canip'], 'usergroup[shoutip]', $ug_bitfield['shoutip']); print_yes_no_row($vbphrase['shoutbox_admin_permissions_coventry'], 'usergroup[shoutcoventry]', $ug_bitfield['shoutcoventry']); if ($vboptions['shoutbox_enablehierarchy'] == 1) { print_input_row($vbphrase['shoutbox_admin_permissions_hierarchy'], 'usergroup[shouthierarchy]', $usergroup['shouthierarchy']); } } print_table_break(); |
#160
|
||||
|
||||
![]()
Very nice job with this, thanks a bunch.
|
#161
|
|||
|
|||
![]()
Two things:
First of all, some of my users are complaining that they are getting errors both when they try to read the iframe and the full-screen version. They are told, their usergroup isn't allowed to read the blablabla... but they are members of the ordinary registered usergroup and they should be allowed Second: When upgrading to RC3 which steps do I have to repeat in the installation? |
#162
|
|||
|
|||
![]()
That did it man! Thanks alot for the info -- this hack is the best shoutbox I have used to date and I have been Vbulletining for about 2 years now.
|
#163
|
||||
|
||||
![]() Quote:
And all you have to do is redo to file edits when you upgrade vB, as in any hack. |
#164
|
||||
|
||||
![]()
i went to uninstall it off of localhost and try it again
so i ran the the lines of code to uninstall in on of these post and try to re-install it gives me this FIXED i had to run this to finish un-installing it ALTER TABLE usergroup DROP `shoutmaxdaily` now i am going to re-test it |
#165
|
|||
|
|||
![]()
How can I fix the following display error? Please help. Thanks!
URL: http://www.bibletruths.us/forums/shoutbox.php? |
#166
|
||||
|
||||
![]()
i re-installed it and ran every thing from the SQL files and edited every PHP file and added every TEMPLATE
also converted all black vivi shoutbox post still have problems with the iFrame, i have to turn it OFF with it OFF i can post in the shout box but it takes me to the top on every shout also when i try to view the shoutbox.php it is blank |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|