Page 14 of 19 FirstFirst ... 41213141516 ... LastLast
Results 131 to 140 of 188
  1. #131
    Join Date
    Aug 2010
    Location
    Hartland, MI
    Posts
    285
    Plugin Contributions
    3

    Default Re: Adding reCAPTCHA to Contact Us Form

    I tried switching the keys to global, didn't work, cleared the cache as well. When you first load the store page all is well, but as soon as you click on contact us it breaks the secure page... not good

  2. #132
    Join Date
    Aug 2010
    Location
    Hartland, MI
    Posts
    285
    Plugin Contributions
    3

    Default Re: Adding reCAPTCHA to Contact Us Form

    Ok just noticed it has broken the admin SSL as well...

  3. #133
    Join Date
    Jun 2009
    Posts
    83
    Plugin Contributions
    4

    Default Re: Adding reCAPTCHA to Contact Us Form

    Quote Originally Posted by mikestaps View Post
    I have installed the original reCAPCHA mod v1.1 and all is working, except my entire store WAS on my SSL, it now shows the lock with a red line through it due to the reCAPTCHA not being secure....
    Is there a way to fix this???

    thx
    SSL for an entire site seems like overkill, but either way in includes\templates\your_template_name\templates\tpl_contact_us_default.php find the line with:
    Code:
    recaptcha_get_html(CONTACT_US_RECAPTCHA_PUBLIC_KEY);
    and try changing to:
    Code:
    recaptcha_get_html(CONTACT_US_RECAPTCHA_PUBLIC_KEY, null, true);

  4. #134
    Join Date
    Jun 2009
    Posts
    83
    Plugin Contributions
    4

    Default Re: Adding reCAPTCHA to Contact Us Form

    This shouldn't be affecting the admin page. If you view the source of the admin page, do you see a resource that does not start with https:. You generally find what item is loading via http. I wonder if another item is causing your problem like a image, css, or something.

    Also you could try this in includes/classes/recaptcha_lib.php
    Code:
    if ($use_ssl) {
    to
    Code:
    if ($_SERVER['SERVER_PORT'] == '443') {

  5. #135
    Join Date
    Aug 2010
    Location
    Hartland, MI
    Posts
    285
    Plugin Contributions
    3

    Default Re: Adding reCAPTCHA to Contact Us Form

    Quote Originally Posted by pickupman View Post
    SSL for an entire site seems like overkill, but either way in includes\templates\your_template_name\templates\tpl_contact_us_default.php find the line with:
    Code:
    recaptcha_get_html(CONTACT_US_RECAPTCHA_PUBLIC_KEY);
    and try changing to:
    Code:
    recaptcha_get_html(CONTACT_US_RECAPTCHA_PUBLIC_KEY, null, true);

    This one fixed the issue! Thanks so much.

    Yeah I know SSL on the entire store is overkill but we deal a lot with the 40-50+ crowd and they like that little green lock!
    Also with the "interesting" company name we ten to get some unwanted attention from spammers, etc.

    Thanks again,
    mike

  6. #136
    Join Date
    Feb 2010
    Posts
    5
    Plugin Contributions
    0

    Default Re: Adding reCAPTCHA to Contact Us Form

    Hello, I installed the pickupman's recaptcha and it works just nice in the contact_us page... but in create account it doesn't even show... what can I do? My zencart version is 1.3.8a.

    Thanks in advanced,
    Luis.

  7. #137
    Join Date
    Feb 2010
    Posts
    5
    Plugin Contributions
    0

    Default Re: Adding reCAPTCHA to Contact Us Form

    Ok, I figured it out already. You have to create those records in the zen_configuration table. For instance if you want to enable the create account, you have to insert this:

    Code:
    INSERT INTO `cerca_zc1`.`zen_configuration` (
    `configuration_id` ,
    `configuration_title` ,
    `configuration_key` ,
    `configuration_value` ,
    `configuration_description` ,
    `configuration_group_id` ,
    `sort_order` ,
    `last_modified` ,
    `date_added` ,
    `use_function` ,
    `set_function` 
    )
    VALUES (
    NULL , 'Enable Create Form', 'CREATE_ACCOUNT_RECAPTCHA_STATUS', 'true', 'Display reCAPTCHA text on create form (default: true)', '31', '0' , NULL , '0001-01-01 00:00:00', NULL , 'zen_cfg_select_option(array("true", "false"),'
    );
    The other configuration_key (that you have to create if you want to enable them) are:
    CREATE_ACCOUNT_RECAPTCHA_STATUS
    LOGIN_RECAPTCHA_STATUS
    ADVANCED_SEARCH_RECAPTCHA_STATUS
    PRODUCT_REVIEWS_WRITE_RECAPTCHA_STATUS
    TELL_A_FRIEND_RECAPTCHA_STATUS

    Cheers,
    Luis.

  8. #138
    Join Date
    Jun 2007
    Location
    Michigan
    Posts
    187
    Plugin Contributions
    0

    Default Re: Adding reCAPTCHA to Contact Us Form


    Have any of you who use reCATCHA Notice that most of the time it verifies success, even when the typed word is WRONG?

  9. #139
    Join Date
    Jun 2009
    Posts
    83
    Plugin Contributions
    4

    Default Re: Adding reCAPTCHA to Contact Us Form

    I have posted a new update that may fix some of the bugs mentioned above.
    Updates can be downloaded from:
    https://bitbucket.org/pickupman/zencart-recaptcha

    Release notes include notes about the changes. For some unknown reason the installation routine got deleted, and so some of the pages values were missing.

  10. #140
    Join Date
    Jun 2009
    Posts
    83
    Plugin Contributions
    4

    Default Re: Adding reCAPTCHA to Contact Us Form

    I have updated the login page to allow captcha to be shown on the login page with a non-split login page. A button when click will load the recaptcha code in the appropriate form. Clicking on either button will toggle the recaptcha between forms.

    If you have either login page or create account set to false, the recaptcha will be displayed without any user interaction in the proper place.

    Example: Enable Login = false Enable Create Account = true
    Recaptcha will be displayed automatically at bottom of page

    Example: Enable Login = true Enable Create Accout = true
    Button will be displayed in both form, when clicked will load the recaptcha in that form. Clicking on the other form will remove the previous recaptcha and insert new one in other form

    When split page is enabled, the recaptcha will be displayed automatically if enabled.

    https://bitbucket.org/pickupman/zencart-recaptcha

 

 
Page 14 of 19 FirstFirst ... 41213141516 ... LastLast

Similar Threads

  1. Contact reCAPTCHA
    By nolsowski in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 29 Apr 2012, 08:54 PM
  2. Contact Recaptcha
    By Miff in forum General Questions
    Replies: 1
    Last Post: 15 Jun 2011, 10:40 PM
  3. Adding a contact form
    By Matt Smith in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 8 Jun 2010, 11:27 PM
  4. Using two modules add extra fields and recaptcha to contact form
    By webmiss in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 22 Feb 2010, 07:43 PM
  5. Removing default contact info on contact us page/adding form to page
    By haggis0929 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 28 Dec 2009, 06:41 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