The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
![]()
I was going to use this for something I was working on: create a plugin with hook location global_complete and this code:
Code:
if ($vbulletin->userinfo['userid'] AND $vbulletin->session->created) { $fp = @fopen('memberips.log', 'a'); // <--- add path to writable directory if (!empty($fp)) { fwrite($fp, IPADDRESS . ',' . $vbulletin->userinfo['userid'] . ',' . $vbulletin->db->escape_string($vbulletin->userinfo['username']) . "\n"); fclose($fp); } } In any case, this logs the user name, id, and ip whenever a session is created. You would probably want to add the data/time to this. Note: I think this will be OK but I didn't try it on a busy site. I also don't know if the info might somehow already be available from the web server logs. ETA: of course you could also add a check for the userid if you only want to log that one user. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|