The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
IpInfo -- Extra user IP information Details »» | |||||||||||||||||||||||||
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. ================================================== ===== Upload: 1 file Add: 3 templates Added: 9 phrases Added: Admin setting ================================================== ===== Tested: vBulletin Version 3.6.8 VB 3.5 ver. Show Your Support
|
Comments |
#102
|
|||
|
|||
Great!
|
#103
|
||||
|
||||
Great work,, I like this... Installed
|
#104
|
|||
|
|||
I don't see anything. No Control panel options, no extra IP info.
Fresh vB 3.6.8 install - copied .php file - uploaded xml via Control Panel as instructed nada Do we need to change the username in the xml? What am I missing? Thanks in advance for advice!! |
#105
|
|||
|
|||
I quote...i don't see anything and i have 3.6.8 version.
|
#106
|
||||
|
||||
works perfectly - thanks!
to those of you who don't know where to look for the info provided by this hack - just click on the IP icon in the postbit and you will be taken to a page that displays the IP info |
#107
|
||||
|
||||
Quote:
- Works if "Log IP Addresses" set to "Display publicly" or "Display, but require administrator or moderator" Quote:
To fix this one. Change code: Code:
// Is user allowed to view ips? if (!can_moderate($threadinfo['forumid'], 'canviewips') OR !is_member_of($vbulletin->userinfo, explode(',',$vbulletin->options['ipinfo_groups']))) { print_no_permission(); } Code:
// Is user allowed to view ips? if ( is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options[ipinfo_groups])) ) { // do nothing } else if ( !can_moderate($threadinfo['forumid'], 'canviewips') ) { print_no_permission(); } else { // do nothing } ========================================= And in product-ipinfo.xml I advice to change. This one (1): Code:
<td class="tcat" width="100%"><phrase 1="$postinfo[username]">$vbphrase[xs_ip_address_for_this_post]</phrase></td> Code:
<td class="tcat" width="100%"><phrase 1="$postinfo[username]" 2="$postinfo[userid]" 3="$postinfo[postid]">$vbphrase[xs_ip_address_for_this_post]</phrase></td> Code:
<phrase name="xs_ip_address_for_this_post" date="1191513680" username="Zachariah" version="1.2"><![CDATA[{1}'s IP Address for this post]]></phrase> Code:
<phrase name="xs_ip_address_for_this_post" date="1191513680" username="Zachariah" version="1.2"><![CDATA[<a href="member.php?u={2}">{1}</a>'s IP Address for post <a href="showthread.php?p={3}#post{3}">#{3}</a>]]></phrase> ========================================= This one (3): Code:
<setting varname="ipinfo_groups" displayorder="260"> <datatype>free</datatype> <defaultvalue>5,6,7</defaultvalue> </setting> Code:
<setting varname="ipinfo_groups" displayorder="260"> <datatype>free</datatype> <defaultvalue><![CDATA[5,6,7]]></defaultvalue> </setting> This one (4): Code:
<url>https://vborg.vbsupport.ru/showthread.php?t=117966</url> Code:
<url><![CDATA[https://vborg.vbsupport.ru/misc.php?do=producthelp&pid=ipinfo]]></url> And if Zachariah will add pid for this mod then: This one (5): Code:
<versioncheckurl /> Code:
<versioncheckurl><![CDATA[https://vborg.vbsupport.ru/misc.php?do=productcheck&pid=ipinfo]]></versioncheckurl> I will contact Zachariah for all this one to be in official release. Code:
1.5 - Fixed limit by usergroups - Changed the template so on "User IP Information" page you see clickable post's number (url to post) - Changed the template so on "User IP Information" post's username is clickable now (url to user's profile) - Some other minor changes |
#108
|
|||
|
|||
Quote:
|
#109
|
||||
|
||||
Changelog:
========== 1.5 - Fixed limit by usergroups - Changed the template so on "User IP Information" page you see clickable post's number (url to post) - Changed the template so on "User IP Information" post's username is clickable now (url to user's profile) - Some other minor changes - Thanks to Makc666 Replace PHP file and import product. |
#110
|
||||
|
||||
Excellent. Thank you.
|
#111
|
|||
|
|||
Thx dude.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|