The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
AdminCP Access Details »» | |||||||||||||||||||||||||||
A friend of mine requested this so I made it. By default the plugin is disabled, otherwise you would not be able to access the AdminCP.
If someone tries to access your AdminCP and they are not the IP, User Group, or User ID that you defined, they will automatically be forwarded to the forum home. If you wanted to you could enable the IP, User Group, and User ID at once. Enable as many of the features as you feel a need for. Features:
You MUST uninstall the old product after that just follow the directions of the New Installation. File Edits: In admincp/index.php find: Code:
require_once('./global.php'); Add after: Code:
if ($vbulletin->options['allowip_enabled']){ $valid_ips = explode("|", $vbulletin->options['allowedips']); if (!in_array($_SERVER['REMOTE_ADDR'],$valid_ips)) { header('Location: ../index.php'); //change according to your site setup exit(); } } //allowed usergroups if ($vbulletin->options['allowgroups_enabled']){ $valid_ids = explode("|", $vbulletin->options['allowedgroups']); if (!in_array($vbulletin->userinfo['usergroupid'], $valid_ids)) { header('Location: ../index.php'); //change according to your site setup exit(); } } //allowed user ids if ($vbulletin->options['allowids_enabled']){ $valid_ids = explode("|", $vbulletin->options['allowedids']); if (!in_array($vbulletin->userinfo['userid'], $valid_ids)) { header('Location: ../index.php'); //change according to your site setup exit(); } } New Installation: 1.) Perform the file edits 2.) Go to AdminCP-> Plugins & Products-> Manage Products-> Import the product-admincpaccess. 3.) Go to AdminCP-> VBulletin Options-> VBulletin Options-> AdminCP Access. 4.) Under AdminCP Allowed IPs put your IP and then enable the hack and save. For multiple IPs just follow this example: 1.1.1.1|2.2.2.2|3.3.3.3| Optional: 1.) Under AdminCP Allowed User Groups put the User Groups you wish to allow access and then enable the hack and save. For multiple User Groups just follow this example: 6|7 2.) Under AdminCP Allowed User IDs put the User IDs you wish to allow access and then enable the hack and save. For multiple User IDs just follow this example: 1|2|3 Screenshots: Of what? If you are not the defined IP, User Group, or User ID you will be redirected to the forum home. *If you locked yourself out just reupload your original admincp/index.php file to you admincp root. Go into your AdminCP-> VBulletin Options-> VBulletin Options-> AdminCP Access and fix what ever caused you to get locked out. Once you fix it just reupload the edited admincp/index.php file. Changelog: 1.0 - Initial release with just IP Access 2.0 - Now you can allow access to the Admin CP by IP Addresses, User Groups, and User IDs. 2.1 - Added instructions to edit the file as VBulletin Staff don't like for VBulletin files to be edited for you. Other than that nothing has changed, so if you have version 2.0 there's no need to update. 3.0 - Made some minor changes to code. 4.0 - Now supports 3.8.x. 4.1 - Fixed a small coding issue. Download Now
Show Your Support
|
Comments |
#22
|
||||
|
||||
Hello
First of all...great Mod.....congrat. I have a question Is it possible to have this Mod not only with IP grant, but all so with others......like Dyn-dns or NO-IP or something like that? No every Internet User (Admin of a Board ) has a Static IP...........but many work with one of this free tools. Thanks in advance N |
#23
|
|||
|
|||
Quote:
|
#24
|
|||
|
|||
I would agree with you totally redlabour, and I have not downloaded this mod as of yet but from what I read this lets you specify based off usergroup and/or userID? This could be useful for users with a dynamic IP address - however .htaccess is much more secure.
|
#25
|
|||
|
|||
When i install these, i have the right side off the acp in there, but the rest is away.
What can i do? |
#26
|
||||
|
||||
great work,thanks
|
#27
|
|||
|
|||
I have installed this and I can vouch for it working flawlessly! Great Mod! Keep up the great work!:up:
kapii |
#28
|
|||
|
|||
what about dynamic IPs? some of my staff are being locked out cause there ISP is changing there IP periodically. how about adding a IP range option?
|
#29
|
|||
|
|||
Quote:
You mean like 0.0.0.XX? |
#30
|
|||
|
|||
very nice
|
#31
|
|||
|
|||
yes exactly
many ISPs assign dynamic IPs. so the IP is different every time you access the net. so one day this mod works for someone, and the next it dont. if you have a range feature, this would make this feature so much better. the way this mod is designed right now, will only work if you have a static IP. if you add a range feature for example... 123.456.78.x or 123.456.xx.x that would be so much more useful |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|