Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Social Network Marketing Tycoon


You are currently viewing our Social Network Marketing Tycoon as a guest. Please register to participate.
Login



Reply
Need Help Deleting MASSIVE amount of SPAM posts.
Old 06-02-2007, 02:05 PM Need Help Deleting MASSIVE amount of SPAM posts.
GeorgeB
Guest

Posts: n/a
Trades:
Ok my board is all set up and imported from phpBB

JibberNet Forums - Powered by vBulletin

Now I need to get rid of the thousands (yes thousands) of spam posts made while my board sat dormant as a phpBB board.

What I want to do is run a special query for each keyword that is likely spam like cialis, viagra, *****, etc.

BUT... most of the posts are just single posts in threads, so will that mess things up if I do a query direct to the DB like that?

Am I going about this the wrong way? Please help!!
Reply With Quote
 
 
Register now for full access!
Old 06-02-2007, 07:16 PM
MonkeyBiz's Avatar
Junior Talker

Posts: 0
Trades: 0
Do you get traffic from the spam keywords? I have an old phpbb forum which is full of ringtone and pills and other **** spam and I just let it it accumulate. Its like a free content keyword automation system. I get almost 1000 hits a day from search engines from the spam keywords and the related adsense and yahoo publisher ads pay pretty well. Im thinking of launching 10 more of these phpbb forums and having spammers 'populate' it with keyword spam.
MonkeyBiz is offline
Reply With Quote
View Public Profile
 
Old 06-02-2007, 07:56 PM
Experienced Talker

Posts: 41
Trades: 0
****ty. good luck with it.

nice looking template though
__________________

Please login or register to view this content. Registration is FREE
- YouTube Friend Bot Software
aydoubleyou is offline
Reply With Quote
View Public Profile
 
Old 06-03-2007, 12:19 AM
Fredto's Avatar
In need of motivation.

Posts: 996
Trades: 0
Funny how I never thought of that...

I have an old board literally filled with spam (more than 11mb of spam in the DB), I should do something with that...
__________________
Remember, pillage first then burn.

Please login or register to view this content. Registration is FREE
- My blog.
Fredto is offline
Reply With Quote
View Public Profile Visit Fredto's homepage!
 
Old 06-03-2007, 05:07 AM
Junior Talker

Posts: 4
Trades: 0
Quote:
Originally Posted by Worldwebuser View Post
Do you get traffic from the spam keywords? I have an old phpbb forum which is full of ringtone and pills and other **** spam and I just let it it accumulate. Its like a free content keyword automation system. I get almost 1000 hits a day from search engines from the spam keywords and the related adsense and yahoo publisher ads pay pretty well. Im thinking of launching 10 more of these phpbb forums and having spammers 'populate' it with keyword spam.
Woah getting paid to be spammed :tt1:
Asian is offline
Reply With Quote
View Public Profile Visit Asian's homepage!
 
Old 06-03-2007, 12:10 PM
GeorgeB
Guest

Posts: n/a
Trades:
So can anyone help with my actual issue?
Reply With Quote
 
Old 06-04-2007, 06:08 PM PHPBB Admin Toolkit
Junior Talker

Posts: 1
Trades: 0
You can try the Phpbb Admin Toolkit by Starfoxtj.

I can't post URL's yet so just do a google search for the download site.

Hope this helps.
amirfl is offline
Reply With Quote
View Public Profile
 
Old 06-04-2007, 08:20 PM
microdude431's Avatar
Skilled Talker

Posts: 56
Trades: 0
Quote:
Originally Posted by amirfl View Post
You can try the Phpbb Admin Toolkit by Starfoxtj.

I can't post URL's yet so just do a google search for the download site.

Hope this helps.
Great idea, here is the link:

PHPBB Admin ToolKit :: Starfoxtj
__________________

Please login or register to view this content. Registration is FREE
microdude431 is offline
Reply With Quote
View Public Profile
 
Old 06-05-2007, 02:29 PM
imported_mondala's Avatar
$1,000 - $4,999 Monthly

Posts: 115
Trades: 0
I know the anti-spam acp for phpbb will list you all inactive users, vbulletin does this within the acp... might lose some legit users in the process though but just before maitenance you could send a mail to all your users letting them know that if there (0 post) account was removed to just re-register.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
imported_mondala is offline
Reply With Quote
View Public Profile Visit imported_mondala's homepage!
 
Old 06-30-2007, 08:51 PM
Ultra Talker

Posts: 462
Trades: 0
The thing is, not everyone would want spam on their forums if they are using it as a business tool or as a part of their main site as it just makes the whole site look much more unprofessional.

Also, I would watch with some of the spam as it's likely to break Adsense's TOS with a majority of the spam.

Good luck anyway.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

---->
Please login or register to view this content. Registration is FREE
- Over 3,000 Programs - Contextual Ads, Pay Per Lead, plus more
john546 is offline
Reply With Quote
View Public Profile Visit john546's homepage!
 
Old 07-13-2007, 05:58 PM
cpvr
Guest

Posts: n/a
Trades:
Have you fixed this problem yet?
Reply With Quote
 
Old 07-13-2007, 08:31 PM
Frito Pie's Avatar
Webmaster Talker

Posts: 662
Trades: 0
Did you figure it out George? I took a look at your site (nice skin!) and it seems to be very tidy.
__________________
Its not really about the money,
Frito
Frito Pie is offline
Reply With Quote
View Public Profile
 
Old 07-16-2007, 12:58 AM
Junior Talker

Posts: 6
Trades: 0
This mod will force a user to answer a question on the
registration form viz what is 5 + 2 ?

So automated spam bots will not be able to register



Edit: /template/subSilver/profile_add_body.tpl


Look for "<!-- Visual Confirmation -->"
and add a new row (code snippet below) right ABOVE it.
----------------
<tr>
<td class="row1"><span class="gen">How much is 5+2 *</span></td>
<td class="row2">
<input type="text" class="post" style="width: 200px" name="math_question" size="6" maxlength="6" value="" />
</td>
</tr>
--------------



Edit: /includes/usercp_register.php

Look for --> if ($board_config['enable_confirm'] && $mode == 'register')
put the following the code snippets just above it

---------------------------------
if (!isset($_POST['math_question']) || $_POST['math_question'] != '7')
{
$error = TRUE;
$error_msg .= (isset($error_msg) ? '<br/>' : '') . "Incorrect answer to the mathematical question...";
}
---------------------------------


The final file should look like this
=====================
else if ( $mode == 'register' )
{
if ( empty($username) || empty($new_password) || empty($password_confirm) || empty($email) )
{
$error = TRUE;
$error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Fields_empty'];
};

if (!isset($_POST['math_question']) || $_POST['math_question'] != '7')
{
$error = TRUE;
$error_msg .= (isset($error_msg) ? '<br/>' : '') . "Incorrect answer to the mathematical question...";
}
}
imported_Bart is offline
Reply With Quote
View Public Profile Visit imported_Bart's homepage!
 
Old 07-16-2007, 01:00 AM
Junior Talker

Posts: 6
Trades: 0
Sorry only works with phpbb versions
imported_Bart is offline
Reply With Quote
View Public Profile Visit imported_Bart's homepage!
 
Old 07-16-2007, 01:27 AM
GeorgeB
Guest

Posts: n/a
Trades:
I did them by hand
Reply With Quote
 
Old 07-16-2007, 01:30 AM
Webmaster Talker

Posts: 622
Trades: 0
great info ta
__________________

Please login or register to view this content. Registration is FREE
jesterx is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Need Help Deleting MASSIVE amount of SPAM posts.
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.46081 seconds with 12 queries