Log in

View Full Version : Moderate new members - show host instead of or in addition to ip


tenbucks
04-16-2004, 08:28 PM
.........................

filburt1
04-17-2004, 05:07 AM
A friend figured it out for me. Perhaps others can use it

In admincp/user.php

Find:


$cell[] = "<a href=\"usertools.php?$session[sessionurl]do=doips&amp;depth=2&amp;ipaddress=$user[ipaddress]\" target=\"_user\">$user[ipaddress]</a>";


Replace with:


$cell[] = "<a href=\"usertools.php?$session[sessionurl]do=doips&amp;depth=2&amp;ipaddress=$user[ipaddress]\" target=\"_user\">".gethostbyaddr($user[ipaddress])."</a>";

Extremely inadvisable. Many IPs, especially those of proxies and businesses, do not resolve, and for each attempt at resolving the IP, your page will load 5 to 10 seconds slower.