Quote:
Originally Posted by stalkandkill
Here's the code that logs someone's IP when they visit whatever page I add the code to:
Code:
$ip=$_SERVER['REMOTE_ADDR']; $log=("iplog.txt"); $logip=fopen($log,"a"); fputs($logip,date('m-d-y@H:i:sT')." - ".$ip."\n"); fclose($logip);
|
This PHP code doesn't allow you access to the variables used by vBulletin. To get where you want to go, you would need to convert it to a plugin so you could use the variables that contain the information you are trying to track. You might want to think about storing the data in the database rather than a text file for security as well.
HTH