Guest Posts Porn!

Discussion in 'General Marketing' started by CliveAnderson, Jan 27, 2007.

  1. #1
    I was wondering if anybody knows anything about administering on the phpBB forums.

    I recently launched my own free to post ads forum (Which is going quite well) but I keep getting a few guests posting.

    Don't get me wrong I have nothing against guests apart from the fact that one or two of them tend to submit porn to the forum. Fortunately I have managed to delete these entries fairly quickly, but was wondering if anyone was familiar with the administration settings and knew of a way I could stop guests posting and only have signed up members.

    Kind Regards

    Clive Anderson:)
     
    CliveAnderson, Jan 27, 2007 IP
  2. Smyrl

    Smyrl Tomato Republic Staff

    Messages:
    13,740
    Likes Received:
    1,702
    Best Answers:
    78
    Trophy Points:
    510
    #2
    Phpbb is frequently target by spam bots. There is a program spammers use to register new member to spam porn links.
     
    Smyrl, Jan 27, 2007 IP
  3. Diether

    Diether Peon

    Messages:
    278
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Haven't used phpBB for about 2 years, so can't tell you exactly where to look.
    But it's definatly possible (and recommend) to disable guest posting.
    In the board permissions set the post/reply permissions to reg
     
    Diether, Jan 27, 2007 IP
  4. checksum

    checksum Notable Member

    Messages:
    2,633
    Likes Received:
    101
    Best Answers:
    0
    Trophy Points:
    230
    #4
    I'm betting it's possible to add a mod to your forum that blocks active urls from new users. Digitalpoint does it. :)
     
    checksum, Jan 27, 2007 IP
  5. ablaye

    ablaye Well-Known Member

    Messages:
    4,024
    Likes Received:
    97
    Best Answers:
    0
    Trophy Points:
    150
    #5
    Log on to the admin section and change permissions for each forum not to allow guests to post.
     
    ablaye, Jan 27, 2007 IP
  6. javagamer

    javagamer Well-Known Member

    Messages:
    381
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    118
    #6
    just add two mods captcha and are you human(or something like that)
     
    javagamer, Jan 27, 2007 IP
  7. lfcfan

    lfcfan Peon

    Messages:
    401
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #7
    hmm...I have a bitter experience. I was getting simillar kind of spamming. When I tried to ban the IP address, the forum got hacked....too bad. My few months works just disappeared in few seconds.....
     
    lfcfan, Jan 27, 2007 IP
  8. njoker555

    njoker555 Notable Member

    Messages:
    4,392
    Likes Received:
    139
    Best Answers:
    0
    Trophy Points:
    240
    #8
    yea i had the same problem lol, but i disallowed guests to post so they just registered and posted anyway, i deleted and banned 'em, waste of time, i didnt even know there was a mod like the one this forum uses lol, its cool, is there one for smf?
     
    njoker555, Jan 27, 2007 IP
  9. Red Thunder

    Red Thunder Peon

    Messages:
    473
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I'm having the same problem on my forum. I'm getting over 500 new posts a day just SPAM. about 10 accounts. I wish there was a solution to this.
     
    Red Thunder, Jan 27, 2007 IP
  10. checksum

    checksum Notable Member

    Messages:
    2,633
    Likes Received:
    101
    Best Answers:
    0
    Trophy Points:
    230
    #10
    Add a mod that deactivates links from users with low post counts. I'm sure you can find someone to write a mod like that.
     
    checksum, Jan 27, 2007 IP
  11. Red Thunder

    Red Thunder Peon

    Messages:
    473
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #11
    right, but you're still getting 500 spam posts to delete one by one. Doesn't solve the problem hardly.
     
    Red Thunder, Jan 27, 2007 IP
  12. checksum

    checksum Notable Member

    Messages:
    2,633
    Likes Received:
    101
    Best Answers:
    0
    Trophy Points:
    230
    #12
    You can try changing your registration method if it's such a big problem. Be a little innovative. ;)
     
    checksum, Jan 27, 2007 IP
  13. tigrrra

    tigrrra Well-Known Member

    Messages:
    2,109
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    120
    #13
    block guest posts
     
    tigrrra, Jan 27, 2007 IP
  14. clancey

    clancey Peon

    Messages:
    1,099
    Likes Received:
    63
    Best Answers:
    0
    Trophy Points:
    0
    #14
    You can make phpBB prevent users from including URLs in their posts until they have made a certain minimum number of posts. Add the following to the functions_post.php file at about line 170 -- after the "Check Message" block and before the "Handle Poll Stuff" block:

    Back up the file before making the change and test it by quickly creating a new user and trying to post a URL in a message.

    
    if($userdata['user_posts']<10)
            {
            if(strpos($message, "[url")!==false
                || strpos($message, "http://")!==false
                    || strpos($message, "www")!==false
                         || strpos($message, ".info")!==false) {
            $error_msg .= (!empty($error_msg)) ? '<br />' : "";
            $error_msg .= 'Error in posting: You are not allowed
                            to post any websites here at the moment.';
                    }
    
    PHP:
    You could defeat people who try to post a bunch of messages at a time by also including a time element, such as a minimum of 10 posta and a minimum of 5 days membership in the forum:

    
    if($userdata['user_posts']<10
          || (time() - $userdata['user_regdate']) < 5*60*60*24)
    
    PHP:
     
    clancey, Jan 28, 2007 IP
  15. tigrrra

    tigrrra Well-Known Member

    Messages:
    2,109
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    120
    #15
    nice job clancey i wish i was usind phpBB :)
     
    tigrrra, Jan 28, 2007 IP
  16. bccruzer

    bccruzer Peon

    Messages:
    871
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #16
    not bad clancy,
    also, try banning their domain of their email, if applicable
     
    bccruzer, Jan 28, 2007 IP
  17. tihomir

    tihomir Peon

    Messages:
    56
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #17
    I faced same problems. I installed some antispam mods with turing numbers and disabled guests posting and still no effect.
    So I delete the posts manually from time to time.

    Just wondering if I miss something..... :confused:
     
    tihomir, Jan 28, 2007 IP
  18. The Stealthy One

    The Stealthy One Well-Known Member Affiliate Manager

    Messages:
    3,043
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    105
    #18
    You can also try blocking by IP address.
     
    The Stealthy One, Jan 28, 2007 IP
  19. CliveAnderson

    CliveAnderson Peon

    Messages:
    37
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #19
    WOW!

    I never knew so many people would be interested. I'm really enjoying reading all the responses. It just goes to show that I am not alone in my problem with the Porn Posters.

    For me though I think Diether came up with the solution. Or at least I've implemented it and I've had no guests since, or porn posting.

    Thank you again for all the input and support you have shown.

    I hope you are able to help the others who are appear to be suffering with similar problems.

    Kind Regards

    Clive Anderson
     
    CliveAnderson, Jan 28, 2007 IP
  20. Diether

    Diether Peon

    Messages:
    278
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #20
    You're welcome :)
     
    Diether, Jan 29, 2007 IP