Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Template Modifications

Reply
 
Thread Tools
link user or guest IP to site owner (uses whois from www.dnsstuff.com) Details »»
link user or guest IP to site owner (uses whois from www.dnsstuff.com)
Version: 1.00, by Renmiri Renmiri is offline
Developer Last Online: May 2008 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 11-10-2006 Last Update: Never Installs: 4
Template Edits
 
No support by the author.

A very simple and handy template hack to see who are those mysterious guests that show on your forum daily

On template whosonlinebit find

Code:
<if condition="$show['ip']">
		<td class="$ipclass"><div class="smallfont">$userinfo[host]<if condition="$show['useragent']"><br />$userinfo[useragent]</if></div></td>
	</if>
Replace the whole thing with
Code:
<if condition="$show['ip']">
		<td class="$ipclass"><div class="smallfont"><a href="http://www.dnsstuff.com/tools/whois.ch?ip=$userinfo[host]">$userinfo[host]</a><if condition="$show['useragent']"><br />$userinfo[useragent]</if></div></td>
	</if>
Happy snooping! :P

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 11-12-2006, 05:11 PM
StuntFactoryX StuntFactoryX is offline
 
Join Date: May 2006
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

would you mind looking at my 3.6.3 template and see if we can get this to work on new versions.

Code:
<tr>

	<td class="alt1" width="35%">
		<span class="smallfont" style="float:$stylevar[right]"><span class="time">$userinfo[time]</span></span>
		<if condition="$show['loggedinuser']">
			<a href="member.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[musername]</a>$userinfo[hidden]<if condition="$show['buddy']">+</if>
		<else />
			<if condition="$show['spider']">$spidertype<else />$userinfo[musername]</if>
		</if>
	</td>
	
	<td class="alt2" width="35%">
		<div>
			<span style="float:$stylevar[right]">
				<if condition="$show['lockedout']"><img src="$stylevar[imgdir_statusicon]/wol_lockedout.gif" alt="$vbphrase[viewing_forum_closed]" /></if>
				<if condition="$show['nopermission']"><img src="$stylevar[imgdir_statusicon]/wol_nopermission.gif" alt="$vbphrase[viewing_no_permission_message]" /></if>
				<if condition="$show['errormessage']"><img src="$stylevar[imgdir_statusicon]/wol_error.gif" alt="$vbphrase[viewing_error_message]" /></if>
				<if condition="$show['reallocation']"><img src="$stylevar[imgdir_misc]/question_icon.gif" alt="$userinfo[location]" /></if>
			</span>
			$userinfo[action]
		</div>
		<if condition="$show['where']">
			<div class="smallfont" style="margin-top:1px">
				<if condition="$show['subscribed']"><img class="inlineimg" src="$stylevar[imgdir_misc]/subscribed.gif" alt="$vbphrase[you_are_subscribed_to_this_thread]" /></if>
				$userinfo[where]
			</div>
		</if>
	</td>
	
	<if condition="$show['ip']">
		<td class="$ipclass"><div class="smallfont">
			<if condition="$show['ajax_resolve']">
				<a href="online.php?$session[sessionurl]do=resolveip&amp;ipaddress=$userinfo[host_encoded]" id="resolveip_$count" title="$vbphrase[resolve_ip_address]">$userinfo[host]</a>
			<else />
				$userinfo[host]
			</if>
			<if condition="$show['useragent']"><br />$userinfo[useragent]</if>
		</div></td>
	</if>
	
	<if condition="$vboptions['showimicons']">
		<td class="alt2" align="center" nowrap="nowrap">
			$userinfo[aimicon]
			$userinfo[icqicon]
			$userinfo[msnicon]
			$userinfo[yahooicon]
			$userinfo[skypeicon]
		</td>
	</if>
	
</tr>
Reply With Quote
  #3  
Old 11-13-2006, 01:27 AM
Renmiri Renmiri is offline
 
Join Date: Jul 2006
Location: Chicago, USA
Posts: 140
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sounds to me you need to
FIND
Code:
			<if condition="$show['ajax_resolve']">
				<a href="online.php?$session[sessionurl]do=resolveip&amp;ipaddress=$userinfo[host_encoded]" id="resolveip_$count" title="$vbphrase[resolve_ip_address]">$userinfo[host]</a>
			<else />
				$userinfo[host]
			</if>
To make it easier for you, just replace the entire thing you found above with this

Code:
			<if condition="$show['ajax_resolve']">
				<a href="online.php?$session[sessionurl]do=resolveip&amp;ipaddress=$userinfo[host_encoded]" id="resolveip_$count" title="$vbphrase[resolve_ip_address]">$userinfo[host]</a>
			<else />
				<a href="http://www.dnsstuff.com/tools/whois.ch?ip=$userinfo[host]">$userinfo[host]</a>
			</if>
The only change is the the $userinfo[host] after the <else /> is now a link. Want to give it a try ? I don't have 3.6 yet so I can't test it but I don't foresee any troubles.

PS: Set ajax_resolve vb option to NO or FALSE if you haven't already
Reply With Quote
  #4  
Old 11-16-2006, 09:10 PM
StuntFactoryX StuntFactoryX is offline
 
Join Date: May 2006
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

where do i turn off the ajax resolve.. i found an option to turn of ajax but that wont allow my shout box to work.
Reply With Quote
  #5  
Old 11-17-2006, 06:37 PM
Renmiri Renmiri is offline
 
Join Date: Jul 2006
Location: Chicago, USA
Posts: 140
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Vb options ?

If you can't find it, just get rid of the <if>:

Replace the found code with this
Code:
<a href="http://www.dnsstuff.com/tools/whois.ch?ip=$userinfo[host]">$userinfo[host]</a>
Reply With Quote
  #6  
Old 03-15-2007, 04:53 PM
HeRmAn'S HeRmAn'S is offline
 
Join Date: Apr 2006
Location: ThE FaR EnD Of tHe wOrLd
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very nice hack ...my forum instal
Reply With Quote
  #7  
Old 03-18-2007, 12:30 PM
rjmjr69's Avatar
rjmjr69 rjmjr69 is offline
 
Join Date: Jan 2007
Location: Southie
Posts: 876
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Renmiri View Post
Sounds to me you need to
FIND
Code:
			<if condition="$show['ajax_resolve']">
				<a href="online.php?$session[sessionurl]do=resolveip&amp;ipaddress=$userinfo[host_encoded]" id="resolveip_$count" title="$vbphrase[resolve_ip_address]">$userinfo[host]</a>
			<else />
				$userinfo[host]
			</if>
To make it easier for you, just replace the entire thing you found above with this

Code:
			<if condition="$show['ajax_resolve']">
				<a href="online.php?$session[sessionurl]do=resolveip&amp;ipaddress=$userinfo[host_encoded]" id="resolveip_$count" title="$vbphrase[resolve_ip_address]">$userinfo[host]</a>
			<else />
				<a href="http://www.dnsstuff.com/tools/whois.ch?ip=$userinfo[host]">$userinfo[host]</a>
			</if>
The only change is the the $userinfo[host] after the <else /> is now a link. Want to give it a try ? I don't have 3.6 yet so I can't test it but I don't foresee any troubles.

PS: Set ajax_resolve vb option to NO or FALSE if you haven't already
I tried this in 3.6.5 and have not been able to get it to work. Any other ideas?

Edit. it works when I turn ON ip resolve but I hate that view normally.
Reply With Quote
  #8  
Old 03-19-2007, 03:39 PM
HeRmAn'S HeRmAn'S is offline
 
Join Date: Apr 2006
Location: ThE FaR EnD Of tHe wOrLd
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Another page open this code (dnsstuff.com)>

Code:
<if condition="$show['ip']">
        <td class="$ipclass"><div class="smallfont"><a href="http://www.dnsstuff.com/tools/whois.ch?ip=$userinfo[host]"target="_blank">$userinfo[host]</a><if condition="$show['useragent']"><br />$userinfo[useragent]</if></div></td>
    </if>
:up:
Reply With Quote
  #9  
Old 03-19-2007, 08:35 PM
SaN-DeeP's Avatar
SaN-DeeP SaN-DeeP is offline
 
Join Date: Jun 2002
Location: Mumbai, India
Posts: 1,195
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this might come in handy. thanks
Reply With Quote
  #10  
Old 03-20-2007, 02:01 AM
rjmjr69's Avatar
rjmjr69 rjmjr69 is offline
 
Join Date: Jan 2007
Location: Southie
Posts: 876
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bump anything on my problem
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:00 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06239 seconds
  • Memory Usage 2,300KB
  • Queries Executed 24 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (9)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete