 |
 |
 |
 |
#272490 - 04/16/04 11:13 AM
Finished-[6.3] Show Unregistered Hostnames
|
Lurker
Registered: 03/10/04
Posts: 3
|
Mod Name / Version: Show Unregistered Hostnames <br /><br /> Description: Shows the hostname of anonymous users on the "Who's Online" screen under the IP.<br /><br />For example under 64.68.86.38 will show crawler2.googlebot.com <br /><br /> Working Under: UBB.Threads 6.3 <br /><br /> Mod Status: Finished <br /><br /> Any pre-requisites: <br /><br /> Author(s): juggaleaux <br /><br /> Date: 04/16/04 <br /><br /> Credits: <br /><br /> Files Altered: online.php<br />/templates/default/online.tmpl <br /><br /> New Files: none <br /><br /> Database Altered: none <br /><br /> Info/Instructions: a demo is here<br /><br />In online.php, find this:<br /><br />if ($user['U_Status'] == "Administrator") {<br /> $piece['0'] = "";<br /> preg_match("/-ANON-(.*)/",$Username,$piece);<br /> $Username = $piece['1'];<br />}<br /><br />and change to this:<br /><br />if ($user['U_Status'] == "Administrator") {<br />$piece['0'] = "";<br />preg_match("/-ANON-(.*)/",$Username,$piece);<br />$Username = $piece['1'];<br />$hostname = gethostbyaddr($piece['1']);<br />$anonrow[$x]['hostname'] = $hostname;<br />}<br /><br />In online.tmpl find this:<br /><br /><td class="{$anonrow[$i]['color']}"><br />{$anonrow[$i]['Username']}<br /></td><br /><br />and change it to this:<br /><br /><td class="{$anonrow[$i]['color']}"><br />{$anonrow[$i]['Username']}<BR><br /><small>{$anonrow[$i]['hostname']}</small><br /></td><br /><br />I've only tested this on 6.3, but it should work on some other versions as well. <br /><br /> Disclaimer: Please backup every file that you intend to modify. <br />If the modification modifies the database, it's a good idea to backup your database before doing so. <br /><br />Note: If you modify your UBB.Threads code, you may be giving up your right for "official" support from Infopop.If you need official support, you'll need to restore unmodified files.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#272495 - 04/21/04 02:06 AM
Re: Finished-[6.3] Show Unregistered Hostnames
[Re: 234234]
|
Junior Member
Registered: 01/31/02
Posts: 676
|
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|