PDA

View Full Version : Miscellaneous Hacks - WOL - IP Whois Look Up


BGN64
09-07-2012, 10:00 PM
This a very small template edit that shows a link to a Whois look up of the user IP on WOL. Something I had with my old forum software before migrating to vB... I missed it!

Go To: AdminCP>Edit templates>WHOSONLINE

Find:
<vb:if condition="$userinfo['show']['ip']">
<td class="whoinfo">
<vb:if condition="$userinfo['show']['ajax_resolve']">
<a href="online.php?{vb:raw session.sessionurl}do=resolveip&amp;ipaddress={vb:raw userinfo.host_encoded}" id="resolveip_{vb:raw count}" title="{vb:rawphrase resolve_ip_address}">{vb:raw userinfo.host}</a>
<vb:else />
{vb:raw userinfo.host}
</vb:if>

Add Code in RED:
<vb:if condition="$userinfo['show']['ip']">
<td class="whoinfo">
<vb:if condition="$userinfo['show']['ajax_resolve']">
<a href="online.php?{vb:raw session.sessionurl}do=resolveip&amp;ipaddress={vb:raw userinfo.host_encoded}" id="resolveip_{vb:raw count}" title="{vb:rawphrase resolve_ip_address}">{vb:raw userinfo.host}</a> - <a href="http://whois.domaintools.com/{vb:raw userinfo.host}" target="_blank">Whois</a>
<vb:else />
{vb:raw userinfo.host}
</vb:if>

Again, super simple, and something I wanted for myself and thought some other non-coders like me might be interested in. If any one knows of a mod that provides a whois look up similar to this please let me know. I would love to install it instead of editing the template :)

GhostHunter2010
09-08-2012, 01:51 PM
well i dont need to test this :) but i know how it works i use to have it long time ago :) an im sure it works fine

Gemma
09-08-2012, 03:31 PM
Nice idea. Thanks :)

Darkman7030
08-03-2015, 01:05 PM
Thanks