Version: 4.2.0.1, by Paul M
Developer Last Online: Nov 2023
Category: Administrative and Maintenance Tools -
Version: 4.2.x
Rating:
Released: 01-01-2010
Last Update: 01-03-2015
Installs: 686
DB Changes Uses Plugins Auto-Templates
Code Changes Translations
No support by the author.
--------------------------------------------------------------------------------
This modification has been withdrawn.
vBulletin 4.0.x and 4.1.x are no longer supported.
For vBulletin 4.2.x please use the built in reverse proxy detection.
--------------------------------------------------------------------------------
This hack makes the forum always use the members real ip if a proxy is detected, meaning that all existing ip functions should continue to work, basically ignoring the proxy server (other than recording it's presence).
For example ;
* The real ip is displayed in the who's online page.
* The real and proxy server ip's are accesible for each post, the button is red for members using a proxy server.
* The real ip is searchable in the admin/mod cp (but not the proxy ip).
* The real ip can be banned by admins.
Note: This hack relies on the proxy server passing the correct http variables to allow detection.
If they are not passed then detection will not work. By definition, annonymous proxies do not pass on these variables.
If a proxy is detected, then a red ip icon is displayed instead of the standard one.
To install, download and unzip the files and follow the instructions in the text file.
This modification involves changes to the class_core.php file - if you upgrade your vbulletin, you must reapply those changes.
If you forget these edits, the modification will continue to work for forum posts only (v4.0.4 +).
History:
v4.0.1 : 02-Jan-2010 : Initial release for vb 4.0.0 Gold. v4.0.2 : 04-Jan-2010 : Added check for invalid alt ip address. v4.0.3 : 13-Jan-2010 : Minor change to cope better when people forget the class_core file edits. v4.0.4 : 15-Jan-2010 : Further changes to process forum posts when people forget the class_core file edits. v4.0.5 : 20-Feb-2010 : Internal update, not released. v4.0.6 : 27-Feb-2010 : Style code updates for vB 4.0.2. v4.0.7 : 30-Oct-2010 : Style code updated to work when css stored as files.
v4.1.0 : 04-Dec-2010 : Updated for vBulletin 4.1.x
v4.1.7.0 : 16-Oct-2011 : Updated for vBulletin 4.1.7. v4.1.8.0 : 18-Nov-2011 : Updated for vBulletin 4.1.8.
v4.2.0.0 : 24-May-2012 : Updated for vBulletin 4.2.0. v4.2.0.1 : 02-Jan-2015 : Updated for Cloudflare Changes.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
This mod does not work. I'm attempting to use it with Cloudflare (at Cloudflare's recommendation), and I'm still only seeing Cloudflare IP addresses within vBulletin.
I am using this mod with Cloudflare, and it works well.
Below is the result which shows proxy IP is from Cloudflare, and real IP of your forum visitor.
vBulletin Message
The Real IP Address is: 183.90.37.93
The Real IP Host is: 183.90.37.93
The Proxy Server IP Address is: 103.31.5.77
The Proxy Host is: 103.31.5.77
Now I see real IP address user uses, but I still can't see proxy and real IP address, including red IP icon. For some reason, it looks like this mod doesn't work for me on different servers.
I know this is completely my fault i just need some guidance from you kind coders,members
Ok so i have installed this and tested it with a test member qwerty using numerous proxies and posted some posts.I was on another computer signed in as admin and was hoping that qwerty would show up red and i would be able to check real ip etc.I couldnt even see the red ip icon that i have uploaded correctly.
So could it be down to this.I read the text file and it said this below
Step 1.
In class_core.php ;
Find ;
if ($proxy)
{
define('ALT_IP', $this->ipaddress);
define('IPADDRESS', $this->alt_ip);
}
Insert above it ;
// Detect ALL.
if ($registry->ipaddress == $registry->alt_ip)
{
define('PROXYIP','');
}
else
{
$proxy = true;
define('PROXYIP',$registry->ipaddress);
}
So i did that in my class core file and it look like this below.I have highlighted what they said to put above it
// Detect ALL.
if ($registry->ipaddress == $registry->alt_ip)
{
define('PROXYIP','');
}
else
{
$proxy = true;
define('PROXYIP',$registry->ipaddress);
}
if ($proxy)
{
define('ALT_IP', $this->ipaddress);
define('IPADDRESS', $this->alt_ip);
}
So is that code correct im having a moment lol or do you need to turn it on somewhere in settings
I know this is completely my fault i just need some guidance from you kind coders,members
Ok so i have installed this and tested it with a test member qwerty using numerous proxies and posted some posts.I was on another computer signed in as admin and was hoping that qwerty would show up red and i would be able to check real ip etc.I couldnt even see the red ip icon that i have uploaded correctly.
So could it be down to this.I read the text file and it said this below
Step 1.
In class_core.php ;
Find ;
if ($proxy)
{
define('ALT_IP', $this->ipaddress);
define('IPADDRESS', $this->alt_ip);
}
Insert above it ;
// Detect ALL.
if ($registry->ipaddress == $registry->alt_ip)
{
define('PROXYIP','');
}
else
{
$proxy = true;
define('PROXYIP',$registry->ipaddress);
}
So i did that in my class core file and it look like this below.I have highlighted what they said to put above it
// Detect ALL.
if ($registry->ipaddress == $registry->alt_ip)
{
define('PROXYIP','');
}
else
{
$proxy = true;
define('PROXYIP',$registry->ipaddress);
}
if ($proxy)
{
define('ALT_IP', $this->ipaddress);
define('IPADDRESS', $this->alt_ip);
}
So is that code correct im having a moment lol or do you need to turn it on somewhere in settings
Once again thanks
What are you using to edit the file with
PHP Code:
// Detect ALL. if ($registry->ipaddress == $registry->alt_ip) { define('PROXYIP',''); } else { $proxy = true; define('PROXYIP',$registry->ipaddress); }
I just copied and pasted the code into my class core php file.I have also noticed that when i click on code edit for the class core php file its taking forever to load