Results 1 to 7 of 7
  1. #1
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default Getting rid of automated Fake Customer sign ups?

    I have alot of fake customer sign ups every day, which is a bit of a nuisance.

    They are automated, as the first name is always the same as the surname, and the phone number is always 123456

    Is there any way of coding it so if the phone number matches this, or the first name matches the surname, that they get kicked out / sign up refused?

  2. #2
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    20,024
    Plugin Contributions
    3

    Default Re: Getting rid of automated Fake Customer sign ups?

    Probably, but a captcha might be easier - search the Free Software Add Ons for 'captcha'.

  3. #3
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default Re: Getting rid of automated Fake Customer sign ups?

    Hmm, yes but thats a pain in the ###### for normal customers, and another hurdle.

  4. #4
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Getting rid of automated Fake Customer sign ups?

    Captcha is lesser of two evils, and easiest to implement. Otherwise, ban IP address, if known, via Hosting Control Panel

  5. #5
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default Re: Getting rid of automated Fake Customer sign ups?

    I really need something simple, without captcha

    These are the variables in create_account.php


    if (strlen($firstname) < ENTRY_FIRST_NAME_MIN_LENGTH) {
    $error = true;
    $messageStack->add('create_account', ENTRY_FIRST_NAME_ERROR);
    }

    if (strlen($lastname) < ENTRY_LAST_NAME_MIN_LENGTH) {
    $error = true;
    $messageStack->add('create_account', ENTRY_LAST_NAME_ERROR);
    }

    if (strlen($telephone) < ENTRY_TELEPHONE_MIN_LENGTH) {
    $error = true;
    $messageStack->add('create_account', ENTRY_TELEPHONE_NUMBER_ERROR);
    }



    So would something like this work e.g..

    if (strlen($firstname) = (strlen($lastname) {
    $error = true;
    $messageStack->add('create_account', ENTRY_FIRST_NAME_ERROR);
    }

    and..

    if (strlen($telephone) = "123456") {
    $error = true;
    $messageStack->add('create_account', ENTRY_TELEPHONE_NUMBER_ERROR);
    }

  6. #6
    Join Date
    Jan 2006
    Posts
    66
    Plugin Contributions
    0

    Default Re: Getting rid of automated Fake Customer sign ups?

    Quote Originally Posted by dgent View Post
    I really need something simple, without captcha

    These are the variables in create_account.php


    if (strlen($firstname) < ENTRY_FIRST_NAME_MIN_LENGTH) {
    $error = true;
    $messageStack->add('create_account', ENTRY_FIRST_NAME_ERROR);
    }

    if (strlen($lastname) < ENTRY_LAST_NAME_MIN_LENGTH) {
    $error = true;
    $messageStack->add('create_account', ENTRY_LAST_NAME_ERROR);
    }

    if (strlen($telephone) < ENTRY_TELEPHONE_MIN_LENGTH) {
    $error = true;
    $messageStack->add('create_account', ENTRY_TELEPHONE_NUMBER_ERROR);
    }



    So would something like this work e.g..

    if (strlen($firstname) = (strlen($lastname) {
    $error = true;
    $messageStack->add('create_account', ENTRY_FIRST_NAME_ERROR);
    }

    and..

    if (strlen($telephone) = "123456") {
    $error = true;
    $messageStack->add('create_account', ENTRY_TELEPHONE_NUMBER_ERROR);
    }
    No, with that code you would reject anyone with the same number of digits in their first & last names (eg. John Park). I would seriously reconsider making these kinds of coding changes without being familiar with php.
    Patti - OnlineCatholicStore.com
    ZC 1.3.9h with multisite mod -- ZC ROCKS!

  7. #7
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default Re: Getting rid of automated Fake Customer sign ups?

    Quote Originally Posted by pfabrick View Post
    No, with that code you would reject anyone with the same number of digits in their first & last names (eg. John Park). I would seriously reconsider making these kinds of coding changes without being familiar with php.
    This is why Im asking someone what to put...

 

 

Similar Threads

  1. Getting rid of customer store account
    By kdipaolo in forum General Questions
    Replies: 6
    Last Post: 30 Dec 2011, 11:12 PM
  2. Automated UPS Tracking
    By jc8125 in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 28 Dec 2009, 08:59 PM
  3. Approving customer sign ups?
    By Ralf Skirr in forum General Questions
    Replies: 2
    Last Post: 7 Oct 2009, 01:21 PM
  4. Replies: 2
    Last Post: 14 Sep 2006, 08:08 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR