Page 6 of 9 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 690

Hybrid View

  1. #1
    Join Date
    May 2014
    Posts
    6
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    Quote Originally Posted by David Allen View Post
    Hi Searchn

    I haven't had chance to test it yet with v1.5.5, but I can't see any changes that would cause it not to work. I just tried the create account on your site and it does come up with the error.
    I think somehow the reCaptcha response isn't being sent back to the form processing script. Not sure why, the only thing I can see is an extraneous </fieldset> in the html immediately after the reCaptcha. Try getting rid of that and see if it helps

    Regards
    Thanks for the reply. I tried that and it crashes the page. I moved the recapcha line around and still no luck. See the tail end of the tpl_modules_create_account.php file.

    <?php echo recaptcha_get_html(); ?>
    <?php
    if (CUSTOMERS_REFERRAL_STATUS == 2) {
    ?>

    <fieldset>
    <legend><?php echo TABLE_HEADING_REFERRAL_DETAILS; ?></legend>
    </fieldset>

    <div class="form-group">
    <label class="inputLabel" for="customers_referral"><?php echo ENTRY_CUSTOMERS_REFERRAL; ?></label>
    <?php echo zen_draw_input_field('customers_referral', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_referral', '15') . ' id="customers_referral" class="form-control"'); ?>
    </div>

    ><?php } ?>
    </div>

  2. #2
    Join Date
    Feb 2008
    Location
    Amersham, Buckinghamshire, United Kingdom
    Posts
    141
    Plugin Contributions
    1

    Default Re: Support Thread for Google reCAPTCHA plugin

    Looks like you moved a lot of the </fieldset>s around, mostly to move them up to just after the </legend> - not sure why you did that as it means the <fieldset> doesn't contain any fields, which defeats its purpose).
    Also looks like the recaptch is inside <div class="newsletter_block"> - again not sure if you meant it to be.

    I'm amazed that removing an extra </fieldset> would cause the page to crash - malformed html rarely crashes pages, it's usually bad php that does that.

    Regards
    David

  3. #3
    Join Date
    Feb 2008
    Location
    Amersham, Buckinghamshire, United Kingdom
    Posts
    141
    Plugin Contributions
    1

    Default Re: Support Thread for Google reCAPTCHA plugin

    You could also try replacing your tpl_modules_create_account_default.php with the on from the default template and adding the recaptcha line into that. It will mess up your design, but you'll be able to quickly test if it solves the problem.

  4. #4
    Join Date
    Oct 2016
    Location
    washington
    Posts
    1
    Plugin Contributions
    0

    Default problems adding recapcha

    I was getting a bit of spam via contact us page so I decided to add reCaptcha to the contact us, reviews and add new user pages. I've been able to add it and it seems to function but each time I fill out the form and complete the captcha the page blinks or refreshes, but without submitting the data or giving an error. The end result is no spam, new customers or contact email! The site is sevteckits dot com. Any thoughts?

    1.5.4
    PHP Version: 5.4.45
    MySQL 5.6.30
    Log file
    [11-Oct-2016 20:43:45 America/Los_Angeles] PHP Warning: implode(): Invalid arguments passed in /home/purses7/public_html/www.sevteckits.com/catalog/includes/classes/observers/google/ReCaptcha/Response.php on line 128

    Is imploding a good thing?

    Bryan

  5. #5
    Join Date
    May 2008
    Location
    Amarillo, TX
    Posts
    40
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    Quote Originally Posted by David Allen View Post
    I've started this thread to provide support for my Google reCAPTCHA plugin. http://www.zen-cart.com/downloads.php?do=file&id=1455
    Any questions or problems let me know below
    Regards
    David
    Any chance of getting an updated version for Zen Cart 1.5.5?

  6. #6
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Support Thread for Google reCAPTCHA plugin

    Quote Originally Posted by ehswift View Post
    Any chance of getting an updated version for Zen Cart 1.5.5?
    The changes are VERY simple:

    For each of the 3 template files, find the line that says:
    Code:
    <?php echo recaptcha_get_html(true); ?>
    That's the only change that exists in each of those 3 template files. You can find that line in each file, and put it in the similar spot in the newer version of that same file in your own template.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #7
    Join Date
    May 2005
    Location
    England
    Posts
    740
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    This is a great module, and works nice on 1.55d . Is there a way to make it work nice in responsive view at all? Apparently it seems to be an issue with others elsewhere, but not sure if it can be styled within this module?

  8. #8
    Join Date
    May 2005
    Location
    England
    Posts
    740
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    Apologies, I meant to say it is the google Recaptcha button that seems to hinder responsiveness:-


    Quote Originally Posted by HeathenMagic View Post
    This is a great module, and works nice on 1.55d . Is there a way to make it work nice in responsive view at all? Apparently it seems to be an issue with others elsewhere, but not sure if it can be styled within this module?

  9. #9
    Join Date
    May 2008
    Location
    Amarillo, TX
    Posts
    40
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    Quote Originally Posted by DrByte View Post
    The changes are VERY simple:

    For each of the 3 template files, find the line that says:
    Code:
    <?php echo recaptcha_get_html(true); ?>
    That's the only change that exists in each of those 3 template files. You can find that line in each file, and put it in the similar spot in the newer version of that same file in your own template.
    Thanks for your response, but I am not sure where to find the 3 files you are referring to as it seems they have been moved somewhere else in version 1.5.5d. Can you point me in the right direction please?

  10. #10
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Support Thread for Google reCAPTCHA plugin

    Quote Originally Posted by ehswift View Post
    Quote Originally Posted by DrByte View Post
    Quote Originally Posted by ehswift View Post
    Any chance of getting an updated version for Zen Cart 1.5.5?
    The changes are VERY simple:

    For each of the 3 template files, find the line that says:
    Code:
    <?php echo recaptcha_get_html(true); ?>
    That's the only change that exists in each of those 3 template files. You can find that line in each file, and put it in the similar spot in the newer version of that same file in your own template.
    Thanks for your response, but I am not sure where to find the 3 files you are referring to as it seems they have been moved somewhere else in version 1.5.5d. Can you point me in the right direction please?
    Sigh. No, they didn't move.

    /includes/templates/YOUR_TEMPLATE/templates/tpl_contact_us_default.php
    /includes/templates/YOUR_TEMPLATE/templates/tpl_modules_create_account.php
    /includes/templates/YOUR_TEMPLATE/templates/tpl_product_reviews_write_default.php
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 6 of 9 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. Support Thread for CKEditor Plugin
    By DivaVocals in forum Addon Admin Tools
    Replies: 213
    Last Post: 18 Nov 2024, 04:17 AM
  2. Back to Top Plugin [Support Thread]
    By picaflor-azul in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 6 Feb 2016, 10:52 PM
  3. v151 Plug 'n' Pay plugin [Support Thread]
    By KetchRescue in forum Addon Payment Modules
    Replies: 5
    Last Post: 28 Nov 2015, 04:56 AM
  4. Justuno Plugin [Support Thread]
    By JustunoApp in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 24 May 2015, 11:00 PM
  5. VendingBox Plugin Support Thread
    By vb_support in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 10 Feb 2013, 07:24 PM

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