The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
how do i clear IPs logged
Hi,
https://vborg.vbsupport.ru/showthread.php?p=892363 As you can see from the above thread and the marijuana online communities, overgrow.com and some other websites have been closed and records have been seized by canadian government officials. My website is of similar content, and I just want to ensure my users that there is limited liability. I have IP logs set to display only to admin, but I am looking to no longer log ip addresses and delete existing logs. How do I get rid of IPs logged in the database? |
#2
|
||||
|
||||
vBulletin Options > Message Posting and Editing Options > Log IP Addresses - set to "Do no Log".
You will need to run an sql query to clear old ip addresses, and delete all old database backups (or keep them where no one can find them except you). [sql]update post set ipaddress = '';[/sql] |
#3
|
|||
|
|||
Dont forget the webserver itself logs aswell.
|
#4
|
||||
|
||||
Hmm, and I suppose my cpanel webalizer and other various preintalled stat scripts store this info too, to some extent. Atleast it doesn't make it super easy and associate a username with ip address.
I'm not so sure any government parties in the U.S. would actually use the IP information. But I guess we could all speculate. PaulM thanks for the help, I'm doing this now. I wonder if their IP addresses will still be stored in the database for each member or whatever. I just searched for some IP addresses and found all the places they are stored. I use vbgallery so I ran Code:
UPDATE adv_gallery_images SET ipaddress =''; UPDATE adv_gallery_posts SET ipaddress=''; Code:
UPDATE search SET ipaddress=''; UPDATE user SET ipaddress=''; |
#5
|
||||
|
||||
Then to stop the registration section from updating the new users user table with the ipaddress you find this in your register.php file:
Code:
$userdata->set('ipaddress', IPADDRESS); Code:
$userdata->set('ipaddress',''); |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|