Results 1 to 10 of 694

Hybrid View

  1. #1
    Join Date
    Mar 2009
    Location
    Essex, UK
    Posts
    446
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    Hi

    I have got this working on my upgraded 1.5.6c website and it works on the contact form, but ignored on the registration form. https://shaftdirect.com/index.php?main_page=login

    I can't understand why.

    Please advise.
    Debbie Harrison
    DVH Design | Web Design blog

  2. #2
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    https://fantasiesrealm.com/market/
    version:1.3.9h

    I have installed this mod into my store. I have also redone this about 4 times. The first time cause I installed the items from the 1.39 folder like instructed. It has been such a long time that I have installed new mods or updated any for this version of cart that I got confused when it did not work, at all. after this last time of removing/reuploading the files again I still can not get it to work right.

    I am so confused it just tisn't funny, well kinda sorts is but not.

    When I go to the contact form or the registration form I do get the captcha stuff showing up, yay so far so good. Unfortunately that is all, when actually trying to use it I can test it with name and last initial, email and message....click to send and sure enough it goes through...without any images to verify you are not a robot but are human.

    I then tried it as before with same email and spam in the message area and I get to check the "I ma not a robot" and it still gives me no images to verify with it actually allows the form to be sent.

    I am at my wits end and trust me not many wits left to spare. What should I do, yes I did follow that to upload all files in the main includes folder, the upload only the files for 1.3.9+ and then after so many tries I got very confused later on in the instructions that then said DO NOT upload the files if using version prior to 1.5.1??????

    Help me please.

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

    Default Re: Support Thread for Google reCAPTCHA plugin

    I think you are misunderstanding the intent of the module. I sent a message through your site using fake details. This module is not designed to prevent that. It's to prevent bots from sending junk, not a person sending junk. Anyone can get around the captcha and send junk, well anyone with enough brain power to understand the captcha instructions. It's solely to prevent bots from posting.

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

  4. #4
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    OH, well I do not get bot mails, or not knew they were...LOL I thought this would stop it totally. Oh well I will remove it cause it is not detering the emails I am inundated with each month.

  5. #5
    Join Date
    Sep 2019
    Location
    Los Angeles
    Posts
    14
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    I'm trying to get this to work on Numinix's tableau2 template but I'm not sure where to put the code in tpl_contact_us_default.php because the file is completely custom compared to the default one.

    I've added it after <?php echo zen_draw_input_field('should_be_empty', '', ' size="40" id="CUAS" style="visibility:hidden; display:none;" autocomplete="off"'); ?>
    but the captcha isn't required so the spam is going through like usual.

    Code:
    <?php
    /**
     * Page Template
     *
     * Loaded automatically by index.php?main_page=contact_us.<br />
     * Displays contact us page form.
     *
     * @package templateSystem
     * @copyright Copyright 2003-2012 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version GIT: $Id: Author: DrByte  Sun Aug 19 09:47:29 2012 -0400 Modified in v1.5.1 $
     */
    ?>
    <div class="centerColumn col-lf" id="contactUsDefault">
    <h1><?php echo HEADING_TITLE;?></h1>
    <span class="required-note"><?php echo FORM_REQUIRED_INFORMATION; ?></span>
    
    <?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send',($_SERVER['HTTPS'] == 'on' ? 'SSL' : 'NONSSL'))); ?>
    
    <?php
      if (isset($_GET['action']) && ($_GET['action'] == 'success')) {
    ?>
    <!-- 
    	/*
    	 *  Code changed on: May 26, 2014;
    	 * 	Fixed issue: Layout for success message;
    	*/
     -->
    <div id="contact-form-wrapper">
    	<p class="messageStackSuccess mt0"><?php echo TEXT_SUCCESS; ?></p>
    	<div class="buttonRow"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
    </div><!--EOF #contact-form-wrapper-->
    
    <!-- 
    	/*
    	 *  End Code changed on: May 26, 2014;
    	*/
    -->
    
    <?php
      } else {
    ?>
    
    <?php if ($messageStack->size('contact') > 0) echo $messageStack->output('contact'); ?>
    
    <?php 
    	if (DEFINE_CONTACT_US_STATUS >= '1' and DEFINE_CONTACT_US_STATUS <= '2') { 
    		echo '<div class="contact-us-intro">';
    			require($define_page);
    		echo '</div>';
    	} 
    ?>
    
    <div class="row">
    	<?php if (CONTACT_US_STORE_NAME_ADDRESS== '1') { ?>
    	<div class="contact-details col-sm-12">
    		<address class="contact-info"><?php echo nl2br(STORE_NAME_ADDRESS); ?></address>		
    	</div><!--EOF #store-details-wrapper-->
    	<?php } ?>
    
    	<div class="contact-form col-sm-12 cf">
    
    		<?php
    			// show dropdown if set
    			if (CONTACT_US_LIST != ''){
    		?>
    		<div class="row">
    			<div class="col-xs-12">
    			<
    				<label class="inputLabel" for="send-to"><?php echo SEND_TO_TEXT; ?> <?php echo '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
    				<?php echo zen_draw_pull_down_menu('send_to',  $send_to_array, 0, 'id="send-to"'); ?>
    				
    			</div>
    		</div>
    		<?php
    			}
    		?>
    		
    		<div class="row">
    			<div class="col-xs-6">
    				<label class="inputLabel" for="contactname"><?php echo ENTRY_NAME; ?> <?php echo '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
    				<?php echo zen_draw_input_field('contactname', $name, ' size="40" id="contactname"'); ?>
    			</div>
    			<div class="col-xs-6">
    				<label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL; ?> <?php echo '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
    				<?php echo nmx_draw_email_field('email', ($email_address), ' size="40" id="email-address"'); ?>
    			</div>
    		</div>
    
    		<div class="row">
    			<div class="col-xs-12">
    			
    				<label class="inputLabel" for="enquiry"><?php echo ENTRY_ENQUIRY . ' <span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
    				<?php echo zen_draw_textarea_field('enquiry', '30', '7', $enquiry, 'id="enquiry"'); ?>
    				<?php echo zen_draw_input_field('should_be_empty', '', ' size="40" id="CUAS" style="visibility:hidden; display:none;" autocomplete="off"'); ?>
    				<br class="clearBoth" />
    				<?php echo recaptcha_get_html(false); ?>
    				
    			</div><!--EOF #contact-col-right-->
    		</div>
    		
    		<div class="buttonRow back"><?php echo zen_image_submit(BUTTON_IMAGE_SEND, BUTTON_SEND_MESSAGE_ALT); ?></div>
    		
    	</div><!--EOF #contact-form-wrapper-->
    
    </div>
    
    
    <?php
      }
    ?>
    
    </form>
    
    
    </div>

  6. #6
    Join Date
    Sep 2019
    Location
    Los Angeles
    Posts
    14
    Plugin Contributions
    0

    Default Re: Support Thread for Google reCAPTCHA plugin

    Reading a couple pages pack in this thread I saw someone mentioning their edits to /includes/modules/pages/contact_us/header_php.php on an older version of zen cart. I read to the very bottom of the instructions and saw this change is needed specifically on 1.5.1, even though I'm on 1.5.6 I tried it out as there was nothing left to do and sure enough the captcha became required to use the contact us form. Any ideas why 1.5.1 specific changes needed to be made on my 1.5.6 install?

  7. #7
    Join Date
    Mar 2007
    Posts
    251
    Plugin Contributions
    6

    Default Re: Support Thread for Google reCAPTCHA plugin

    Quote Originally Posted by mjf91331 View Post
    Reading a couple pages pack in this thread I saw someone mentioning their edits to /includes/modules/pages/contact_us/header_php.php on an older version of zen cart. I read to the very bottom of the instructions and saw this change is needed specifically on 1.5.1, even though I'm on 1.5.6 I tried it out as there was nothing left to do and sure enough the captcha became required to use the contact us form. Any ideas why 1.5.1 specific changes needed to be made on my 1.5.6 install?

    I've also just had to do the same on the /includes/modules/TEMPLATE_NAME/create_account.php

    Copying the zco notifier line across from the 1.3 files into this file made it work for me, else you could create an account without ticking the box!

    J

 

 

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