XF 1.1 How can stored IP addresses be deleted?

Thee

Active member
Hey everyone,

I'd like to wipe the stored IP addresses on my board, but I can't find a way to do this. Is there an option in the ACP somewhere to delete logged IP addresses or does anyone know a workaround to make this happen?

Thanks!
 
Code:
DELETE
FROM xf_ip
WHERE user_id = 1

Specify the user_id.

This looks very useful. I'm not very experienced with MySQL and a bit nervous.

Is there anything I need to be wary of when running this query? (obviously I will have the database backed up)
After running it are there any specific tests to make sure nothing went wrong?
 
Top Bottom