We are running 2.2.4.0 of OJS
We have a bunch of SPAM accounts, all are from Afghanistan, None of our legitimate accounts are from Afghanistan.
Will the SQL below delete them without unhappy side effects ?
This thread is encouraging but not official:
viewtopic.php?f=2&t=5610DELETE FROM user_settings
WHERE user_id IN (
SELECT user_id
FROM users
WHERE country = 'AF'
);
DELETE FROM users
WHERE country = 'AF';
It is my plan to enable captcha tonight.