ipInfo is a replacement for the standard 'view users ip' option in
vBulletin. Normally when you click on the view ip button in a user's post
you'll only see his or hers ip address and host name.
With ipInfo you'll get more information. Besides the ip address and host
name you will also see what other users have posted with the same ip
address. That feature can be really good for spotting clones.
Another thing ipInfo will show you is what other ips this user has posted
with and how many times. Could be useful when you want to ban all of the
ips of a user and not just the one of that post.
1.2
- added option to limit how far back to get posts.
1.1
- Added option If the user that posts is a guest use the old standard VB IP info page.
- To upgrade replace postbit_ip template with new code.
-------------------------------------------------------*/
Quote:
Originally Posted by Yorixz
Thanks a lot, very usefull to have some more info than the basic things vB gives.
(Confirmed to work 100% with vB3.5 Gold)
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Thanks a lot, very usefull to have some more info than the basic things vB gives. (Confirmed to work 100% with vB3.5 Gold - hardly different from vB 3.5 RC3 anyway )
Thanks for the test I was installing Gold as I type
I found a major problem on this mod. When you click the IP on an unregistered user who posted in a forum it takes minutes to load and the reason is, after its done loading it generates what seems to be hundreds of IP's under the All IP's for this user. Im assuming it pulls all ips for the name unregistered user.
Can you modify this so it wont pull any additional IP's for unregistered posts?
I found a major problem on this mod. When you click the IP on an unregistered user who posted in a forum it takes minutes to load and the reason is, after its done loading it generates what seems to be hundreds of IP's under the All IP's for this user. Im assuming it pulls all ips for the name unregistered user.
Can you modify this so it wont pull any additional IP's for unregistered posts?
OK ill add an <if> statment - if guest no link just show IP that should work.
Thanks, just let me know when you have it updated. I think it pulled over 1000-2000 IP's on it. I have a big board, so it probably went back like 2 years worth of IP lol
i had to change _SERVER['REMOTE_ADDR'] to $_SERVER['HTTP_X_REMOTECLIENT_IP']. because my host uses a loadbalancer.
before i changed that all users had the same ip (from the host). now all users appear in the Users sharing the same IP Address. because the old wrong ip is still in the database.
Thanks, just let me know when you have it updated. I think it pulled over 1000-2000 IP's on it. I have a big board, so it probably went back like 2 years worth of IP lol
i had to change _SERVER['REMOTE_ADDR'] to $_SERVER['HTTP_X_REMOTECLIENT_IP']. because my host uses a loadbalancer.
before i changed that all users had the same ip (from the host). now all users appear in the Users sharing the same IP Address. because the old wrong ip is still in the database.
is it possible to clear all stored ip adresses?
So basicly every user's post ip must be reset. This hack looks @ the IP recorded on each post. If all your posts have the same IP then we could Null the posts that are currently on you forum to "enpty or blank" value and all the new posts will be ok.
Code:
UPDATE `post` SET `ipaddress` = '' WHERE `ipaddress` ='xxx.xxx.xxx.xxx';
xxx.xxx.xxx.xxx fill in the IP you want to remove.