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.
Warning: xml_get_error_code(): 18 is not a valid XML Parser resource in \includes\class_xml.php on line 276
Warning: xml_get_current_line_number(): 18 is not a valid XML Parser resource in \includes\class_xml.php on line 266
Question: I have a major problem with people registering with false info and then accessing restricted info that is only meant for certain usergroups. These individuals arent worried about posting, but instead access info that isnt meant for them. I try to audit accounts on a weekly basis but the default VB admin doesnt give me much to work with.
Will your hack help with this? Keep in mind these people use false info to sign up so that they can access info that is meant ONLY for other users.
Question: I have a major problem with people registering with false info and then accessing restricted info that is only meant for certain usergroups. These individuals arent worried about posting, but instead access info that isnt meant for them. I try to audit accounts on a weekly basis but the default VB admin doesnt give me much to work with.
Will your hack help with this? Keep in mind these people use false info to sign up so that they can access info that is meant ONLY for other users.
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.
thank you!
but where do i have to add this code?
***edit***
i got it. its ans sql command
anyone knows where the registration ip adresses were stored? i need do clear this ip there too.