drugs advertising
drugs advertising
Sorry. I don't get it. What's medicine has to do with "Irrlicht Beginners Help" subforum?!
For those that don't know: Spambots simply generate a ton of irrelevant posts for no reason. ... Correction, their reason is similar to the reason that folks cheat at games: To ruin the experience for others, gaining some sort of high from it. Elementary school mentality, really.
The Open Descent Foundation is always looking for programmers! http://www.odf-online.org
"I'll find out if what I deleted was vital here shortly..." -d3jake
"I'll find out if what I deleted was vital here shortly..." -d3jake
omg spams appeared again!
My company: http://www.kloena.com
My blog: http://www.zhieng.com
My co-working space: http://www.deskspace.info
My blog: http://www.zhieng.com
My co-working space: http://www.deskspace.info
Hmm, that bot according to its account details already spammed 700+ topics and still do this.
If its possible, it would be great to restrict creating more than 10 topics per day for each "young user" (*). Because ordinary spammers and bots register each time new account for spamming.
(*) "young user" is a user which has registered less than for example 3 months ago.
If its possible, it would be great to restrict creating more than 10 topics per day for each "young user" (*). Because ordinary spammers and bots register each time new account for spamming.
(*) "young user" is a user which has registered less than for example 3 months ago.
-
- Posts: 222
- Joined: Mon Jan 19, 2009 10:03 pm
- Location: Miami, Florida
- Contact:
-
- Admin
- Posts: 14143
- Joined: Wed Apr 19, 2006 9:20 pm
- Location: Oldenburg(Oldb), Germany
- Contact:
Captchas are already installed. I've tweaked the strength a little bit, and also increased the time between consecutive posts a little. But it seems as if there's once more some bot exploit or something. Such strong spamming only seldomly occurs and often just for a few hours. Hope it won't be too severe this time.
damn he deserves a punch in his facegrumpymonkey wrote: he spammed 22 pages on the beginners help forum
My company: http://www.kloena.com
My blog: http://www.zhieng.com
My co-working space: http://www.deskspace.info
My blog: http://www.zhieng.com
My co-working space: http://www.deskspace.info
-
- Posts: 288
- Joined: Wed Apr 16, 2008 1:45 am
- Contact:
Of course there is option to delete all given user posts:
According to phpBB database schema (http://wiki.phpbb.com/display/DEV/Tables), I wrote this little SQL statement:
(change 6 to spammer user_id)
This code will delete given user, all posts and topics he created.
Also, it's deleting user entry in phpbb_acl_user table ("Permission roles and/or individual permissions assigned to users").
It is not needed to delete user, his posts and topics, but deleted user entry in this table will be never used, so it will be good to remove it too.
According to phpBB database schema (http://wiki.phpbb.com/display/DEV/Tables), I wrote this little SQL statement:
Code: Select all
DELETE u, t, p, a FROM phpbb_users AS u INNER JOIN phpbb_topics AS t ON u.user_id=t.topic_poster INNER JOIN phpbb_posts AS p ON u.user_id=p.poster_id INNER JOIN phpbb_acl_users AS a ON u.user_id = a.user_id
WHERE u.user_id=6;
This code will delete given user, all posts and topics he created.
Also, it's deleting user entry in phpbb_acl_user table ("Permission roles and/or individual permissions assigned to users").
It is not needed to delete user, his posts and topics, but deleted user entry in this table will be never used, so it will be good to remove it too.
-
- Admin
- Posts: 14143
- Joined: Wed Apr 19, 2006 9:20 pm
- Location: Oldenburg(Oldb), Germany
- Contact:
Well, there's the mass deletion option in the moderator panel, so I just had to mark those messages. Not deleting every single post.
And no, writing an SQL statement is not "an option to mass delete things". It's a low-level intrusive access to the underlying system. That's as if I have to set some processor registers to write in bold face in MS Office. So I'll keep with the point'n'click solution.
And no, writing an SQL statement is not "an option to mass delete things". It's a low-level intrusive access to the underlying system. That's as if I have to set some processor registers to write in bold face in MS Office. So I'll keep with the point'n'click solution.