The Arcive of vBulletin Modifications Site. |
|
Allow specific users entry of the specific Categorys and Stop the other V 1.0 Details »»
|
||||||||||||||||||||||||||||||||||
|
Allow specific users entry of the specific Categorys and Stop the other V 1.0
Developer Last Online: Sep 2022
Peace and mercy of God be upon you
MOD Version: Allow specific members entry of the specific Categorys and Stop the other users Version 1.0 Tested on the version vBulletin 4.0.1 Programming: omardealo Quote:
http://www.7-secret.org/showthread.php?t=197 More from invocation to God bless you,,, Download Now
Show Your Support
|
||||||||||||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
I would want something that prevents them to access that particular section(thread).
|
|
#3
|
||||
|
||||
|
Quote:
|
|
#4
|
|||
|
|||
|
Does not seem to be working.
|
|
#5
|
||||
|
||||
|
Explain more simplified explanation of the product you want
|
|
#6
|
||||
|
||||
|
I would have just used additional usergroup and forum permissions to get the same effects.
|
|
#7
|
||||
|
||||
|
As I see coder has more than one year to connect.
I have problem with this mode in vb4.2.5. Does any one has this working ? In vb4.2.0 is ok. Any other modification similar to this? Thanks |
|
#8
|
||||
|
||||
|
Can some one please help with this.
The error is: Code:
Call to undefined function split() on line 5 in /var/www/vhosts/TEST FORUM/httpdocs/showthread.php(118) : eval()'d code
#0 /var/www/vhosts/TEST FORUM/httpdocs/showthread.php(118): eval()
#1 {main}
Code:
$stop_users_users = split(',',$vbulletin->options['stop_users_users']);
$stop_users_forums = split(',',$vbulletin->options['stop_users_forums']);
$stop_gustgroupid = split(',',$vbulletin->options['stop_gustgroupid']);
if ($vbulletin->options['stop_users_onoff'] AND in_array($foruminfo['forumid'],$stop_users_forums))
{
if($vbulletin->userinfo['userid']!=in_array($vbulletin->userinfo['userid'],$stop_users_users))
{
standard_error($vbulletin->options['stop_users_msg']);
}
}
|
|
#9
|
||||
|
||||
|
The split() has been deprecated, and needs to be replaced with the explode() function.
|
|
#10
|
||||
|
||||
|
|
![]() |
|
|