Login | Sign up
how to stop spamers
Apr 16th 2011, 7:00 am:
jasp

Joined: Nov 17th 2010
View Profile
Send Message

how to stop spamersHow do you stop spammers?

I get tons of signups on my site and have to delete all of them.

is there a way to disable signups
    Apr 18th 2011, 4:52 am:
    millarmr

    Joined: Mar 5th 2011
    View Profile
    Send Message

    re: jaspif you have v5 you have an option in your admin settings to have people verify your email . I found alot of them used dud emails
      Apr 20th 2011, 4:19 am:
      friendsunity

      Joined: Apr 18th 2010
      View Profile
      Send Message

      re: millarmrya i have v5 ,but there also spamers comes ,Eg in mail id ***@163.com like this , how can we give more against to spammers?
        Apr 20th 2011, 2:12 pm:
        haavard

        Joined: Sep 24th 2010
        View Profile
        Send Message

        Here is some thing, i am going to try this.

        But dont know if it´s working

        http://jcowmaster.net/forums/viewthread/553
          May 5th 2011, 12:42 am:
          jasp

          Joined: Nov 17th 2010
          View Profile
          Send Message

          I can't view that thread. Is there a way to turn registration off!

          the spam makes the program unusable.
            May 8th 2011, 9:26 pm:
            piprees

            Joined: Dec 8th 2010
            View Profile
            Send Message

            All the registrations from spammers im getting are from gmail
              Today, 8:30 am:
              fixme

              Joined: Nov 8th 2010
              View Profile
              Send Message

              go to member.module.php
              function signup
              find this code

              Code
              if (!$resp->is_valid) {
              $captchaerror = $resp->error;
              $errors[] = t('Wrong Verification code');
              }


              put this code after that
              Code
              if (!$_POST['security_question'] || $_POST['security_question'] != 'PUT UR ANSWER HERE' ) {
              $errors[] = t('You must answer security question correctly!');
              }

              change this in the code _PUT UR ANSWER HERE_ with your answer


              find this code

              Code
              <tr class="row1">
              <td>'.t('Image verification').'</td><td>
              '.recaptcha_get_html($captcha['publickey'],$captchaerror).'
              </td>
              </tr>


              put this code after that

              Code
              <tr class="row1">
              <td>'.t('Security Question:').'</td>
              <td>PUT HERE YOUR QUESTION?

              <input type="text" name="security_question"/>
              </td>
              </tr>


              change this in the code _PUT HERE YOUR QUESTION?_

              This is for the free version
              i do not know if this work on other versions
              credit to
              http://jcowmaster.net/forums/viewthread/553