XF 2.2 Anonymize the forum copy for testing purposes.

anon666

Active member
I would like to put online the test copy that allows the license for the team of moderators and administrators, so that they can test the tools without fear.

But first I would like to delete the user IP logs, email addresses and admin logs.

Can I do that without watering applied querys in the database?

For example:

SQL:
UPDATE xf_user SET email = CONCAT(username,'@mydomain.com') WHERE user_id > 1;
 
Top Bottom