Page 16 of 20 FirstFirst ... 61415161718 ... LastLast
Results 151 to 160 of 192
  1. #151
    Join Date
    Oct 2010
    Location
    San Juan Puerto Rico
    Posts
    62
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    I was just looking to upgrade 1.3.9.f to .g today and noticed
    includes/modules/pages/contact_us/header_php is drastically changed from the captcha module. Has anyone looked into if these changes need to be applied or if some of these changes should be copied over?

    Thanks for the inside. I am still learning this code

  2. #152
    Join Date
    Oct 2010
    Location
    Brisbane, Australia
    Posts
    9
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    I am a beginner with Sql

    I'm running Zencart 1.3.9h locally

    I've installed the Captha file.

    I realise the error below is due to a missing table prefix

    I didn't change any prefix before I uploaded the Captcha.sql file by cut & paste of query in admin/tools/install Sql patches

    My tables have a prefix of znc_ and is defined in my configure.php

    The Captcha validation was loaded and showing in admin/configuration (even though in hindsight the insert queries should not have been able to be actioned with not prefix.)

    When I view the contact page I have this error:

    1146 Table 'DB_name.table_anti_robot_registration' doesn't exist
    in:
    [DELETE FROM TABLE_ANTI_ROBOT_REGISTRATION WHERE timestamp < '1289259168' OR session_id = '6aobqt9c01qnvu1qlkb8koj911']


    I ran the Unintall_Captcha.sql
    then I ran the install sql patch again , changing all inserts commands to znc_table_name and delete from znc_table_name.

    yet now when I ran the patch I got this error as soon as I executed the 'send'

    1146 Table 'db_name.znc_znc_configuration_group' doesn't exist
    in:
    [SELECT @sortorder:=max(sort_order) FROM znc_znc_configuration_group;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    So I see 'znc prefix' has been automically added to the configuration_group and I am assuming the rest of the ' INSERT TO configure queries as well.

    yet it didn't add znc_ automatically the first time I ran it to the DELETE FROM query

    Could someone let me know which of the following queries I need to add the prefix of 'znc_' to and which will be automatically added by zencart when I run this sql patch for the Captcha.sql addon?

    Cheers

    SELECT @sortorder:=max(sort_order)
    FROM configuration_group;

    INSERT INTO `configuration_group` VALUES (NULL, 'CAPTCHA Validation', 'Anti-Robot Registration/Verification', @sortorder+1, 1);

    SELECT @captchaid:=max(configuration_group_id)
    FROM configuration_group;

    INSERT INTO configuration ( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function ) VALUES ( 'Activate Validation', 'ACCOUNT_VALIDATION', 'true', 'Enables CAPTCHA Verification Code. This is used to verify that the customer is real and valid, rather than a bot or spider session.', @captchaid, 10, NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),' );

    INSERT INTO configuration ( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function ) VALUES ( 'Activate Validation on Create Account page', 'CREATE_ACCOUNT_VALIDATION', 'true', 'Enables verification on Create Account page. (Recommended)', @captchaid, 20, NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),' );

    INSERT INTO configuration ( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function ) VALUES ( 'Activate Validation on Tell a Friend page', 'TELL_A_FRIEND_VALIDATION', 'true', 'Enables verification on Tell a Friend page. (Recommended)', @captchaid, 30, NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),' );

    INSERT INTO configuration ( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function ) VALUES ( 'Activate Validation on Contact Us page', 'CONTACT_US_VALIDATION', 'true', 'Enables verification on Contact Us page. (Optional)', @captchaid, 40, NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),' );

    INSERT INTO configuration ( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function ) VALUES ( 'Length of Validation Code', 'ENTRY_VALIDATION_LENGTH', '5', 'Default Length = 5, Maximum Length = 32', @captchaid, 50, NULL, NULL );

    DROP TABLE IF EXISTS anti_robotreg;

    CREATE TABLE anti_robotreg (session_id char(32) DEFAULT '' NOT NULL, reg_key char(32) NOT NULL, timestamp int(11) unsigned NOT NULL, PRIMARY KEY (session_id));
    Last edited by pippa_oz; 9 Nov 2010 at 02:31 AM.

  3. #153
    Join Date
    Oct 2010
    Location
    ireland
    Posts
    23
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    Hi

    using the latest version 1.3.9.h

    few add ons but the one that caused the issue when getting this all working was in combination with the "confirm_email_address" add on for the create account page.

    be sure to merge the changes required for each add on to the

    tpl_modules_create_account.php

    in your own template...


    either or add on overwrites the file with its changes and stops either or working unless the changes are merged...use a comparing utility to look at the code changes each implements...

    great mods though, well impressed

    donal

  4. #154
    Join Date
    Nov 2010
    Posts
    12
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    I could not get the sql to install, even when i changed the relevant database tables to zen_ but manually entered everything. Biggest issue I have is that the sql file wants you to put
    "@captchaid" in the "configuration_group_id" well it only yakes an integer, won't accept a phrase I get this error "Warning: #1292 Truncated incorrect INTEGER value: '@captchaid'
    "

    Help

  5. #155
    Join Date
    Nov 2010
    Posts
    12
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    :Well if I was smart enough to read the entire readme file and "understand it" then I would have been ok for the sql portion.

    That is now loaded coreectly and shown in the admin section, though so far I have not gotten the any captcha code to display on the pages.

    But let me dig into y and fix

    Sorry for the last post

    Bud

  6. #156
    Join Date
    Aug 2006
    Posts
    34
    Plugin Contributions
    0

    Default Please help!!!

    I'm missing captcha on login page.

  7. #157
    Join Date
    Feb 2011
    Location
    Summit County
    Posts
    1
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    How is result of Anti-Robot Registration System did you guys forgot about bot spammer?

  8. #158
    Join Date
    Feb 2011
    Posts
    1
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    I am building my my zencart site and want to add this captcha, however i am one of those who needs a dumbed down install proceedure. in the readme.text it says:
    How To Install?
    ---

    Extract or Upload all the files in this archive, overwriting the
    existing files.

    Upload the contents of the images/ directory to your server to
    see the verification graphics.

    Apply the included CAPTCHA.sql file via the usual method.

    NOTE: On certain PHP5 based installations, the SQL file will
    fail if you use the 'patch upload' function. For best results,
    cut-and-paste the code into the query field and press 'Send'
    instead.

    If you have done everything correctly, configuration options for
    CAPTCHA verfication code will appear in:
    Admin->Configuration->CAPTCHA Validation

    Once you have applied the CAPTCHA.sql file, it is safe to remove it
    from your machine.

    Once you have installed and tested this modification, it is safe to
    remove this README file from your machine.


    where can i find a more detailed instruction that includes all paths ect instead of statements like: Apply the included CAPTCHA.sql file via the usual method.

    Sorry to be such a novice.....

  9. #159
    Join Date
    Mar 2011
    Location
    UK
    Posts
    7
    Plugin Contributions
    0

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    Quote Originally Posted by shipbuilder777 View Post
    I am building my my zencart site and want to add this captcha, however i am one of those who needs a dumbed down install proceedure.
    Me too.

    I'm looking at the readme.txt as well. I'm getting the hang of the override system, and have loaded a template and changed the dates from usa format to uk format following the instructions else where.

    Where i've had to override the admin folder for the dates, i've secured both the pre and post edited files for now until I can back up and secure fully the changes.

    So which files end up in the override folders and which do I have to secure before overwriting them?

    Also could I have a pointer on the sql database, my database does have a prefix and is a format xxxx_yyy where xxxx is the prefix. So where in the sql do I insert the prefix and or database name?

    Sorry to be a novice at this as well, but some wise words of guidence will always be of benefit.

  10. #160
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: User Verification (Anti-Robot / CAPTCHA)

    I used the CAPTCHA for a while but found that it really slowed the page load down and in IE the image wasn't rendered properly unless the page was refreshed. I tried this method described here in this forum and suddenly every single spam email disappeared. It's been about 3 months and not a single spam. Plus, the pages that had CAPTCHA are all loading a lot faster. Honestly, do you really want to force your customers to have to enter info in another field when you are doing everything else to make the process of them giving you their money as easy as possible? It seems counter-intuitive, the CAPTCHA is only to make your life easier but your customer's experience more frustrating by having to fill in another field and actually THINK. You don't want them THINKING during their time on your site, read Don't Make Me Think if you think I am wrong.

    Seriously, use the technique from the thread I posted above and you will get rid of ALL spam without compromising your customer's experience.

    Zen Cart and it's community are the best!!

 

 
Page 16 of 20 FirstFirst ... 61415161718 ... LastLast

Similar Threads

  1. CAPTCHA Anti-Robot Mod
    By JTheed in forum All Other Contributions/Addons
    Replies: 185
    Last Post: 26 Dec 2014, 05:43 PM
  2. CAPTCHA Anti-Robot Registration v1.4 for ZC v1.5 -- support thread
    By Joseph_Greely in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 4 Jul 2013, 09:35 PM
  3. v151 CAPTCHA Anti-Robot Registration v1.4
    By Razzinator in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 5 Mar 2013, 04:45 PM
  4. CAPTCHA Anti-Robot
    By New Directions in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 2 Jun 2010, 03:36 AM
  5. CAPTCHA Anti-Robot Registration module
    By oxicottin in forum General Questions
    Replies: 1
    Last Post: 13 Mar 2008, 09:35 AM

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