Results 1 to 10 of 821

Hybrid View

  1. #1
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Quote Originally Posted by earmsby View Post
    Apparently Square only works for customer orders paid for and shipped in the US and Canada. This is what the Square support person is telling me. Does anyone have different information?
    https://squareup.com/help/us/en/article/5085-accepted-cards

    Their website indicates different.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  2. #2
    Join Date
    Oct 2006
    Location
    Worcester, MA
    Posts
    454
    Plugin Contributions
    0

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Interesting. The customer service rep told me, "... customers can use international credit cards to make purchases through a Square merchant’s Online Store, but the order must be placed in the U.S. and shipped to a U.S. address."

    I was not aware that the ZenCart payment module sends the shipping address with the payment info, but maybe it does? Have others been able to process payments to customers with shipping addresses outside the US?

    I did write back to try to clarify where they consider the order to have been "placed" - at my location in the US or at the location where the customer is typing into a browser screen. Seems unclear to me.

  3. #3
    Join Date
    Mar 2005
    Location
    Earth
    Posts
    92
    Plugin Contributions
    0

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Server: Geekhost.ca running Linux 2.6.32-642.6 on HTTP Server: Apache
    PHP v5.6.32 and MySQL: 5.5.5-10
    Zen Cart v1.5.4

    Plugins:
    Simple Blue Responsive v1.0
    CKEditor v3.7s
    Edit Orders v4.1.4
    Sitemap XML v 3.6
    Google Merchant Center Feeder 1.14.5
    Graphical Sales Report v1.11
    Sales Report v3.2.0
    USPS 2017-09-16
    Square Payments Module 0.90

    I get: We could not initiate your transaction because of a problem with the card data you entered. Please correct the card data, or report this error to the Store Owner: SQ-NONCE-FAILURE.
    I tryed turning on and off my working FirstData/Linkpoint/YourPay API.
    I've upgraded my PayPal from Standard to Express and tryed it on and off.

    I've replaced the Application ID and the Application Secret
    I notice that the Location ID is a dropdown in ZC and NOT changeable. It defaults to the "Name" under the Locations tab at connect.squareup.com and not the acual Location ID.

    Are any of the above plugins been known for being the problem?
    Last edited by charmlt; 14 Nov 2017 at 02:41 AM.

  4. #4
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,701
    Plugin Contributions
    11

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Might want to check at https://www.zen-cart.com/content.php...s-for-Zen-Cart.
    Scroll down to Support, Common Errors.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  5. #5
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Guessing it's a javascript error in your payment page.
    .

    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.

  6. #6
    Join Date
    Mar 2005
    Location
    Earth
    Posts
    92
    Plugin Contributions
    0

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Zen Cart 1.5.5e - Database Patch Level: 1.5.5
    with Simple Blue Responsive v1.0 template and CKEditor plugin and I still get:
    "We could not initiate your transaction because of a problem with the card data you entered. Please correct the card data, or report this error to the Store Owner: SQ-NONCE-FAILURE."

    What else could I be doing wrong?

  7. #7
    Join Date
    Mar 2005
    Location
    Earth
    Posts
    92
    Plugin Contributions
    0

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    FIXED!
    Somewhere in Simple Blue Responsive v1.0 Template
    Crap! Now I gotta rebuild a new template
    Last edited by charmlt; 14 Nov 2017 at 03:10 PM.

  8. #8
    Join Date
    Aug 2011
    Posts
    2
    Plugin Contributions
    0

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Amature tearing his hair out here.

    I'm trying to get this working at www.skahfeestudios.com, and it's been throwing SQ-NONCE-FAILURE.

    I've switched template back to classic and still getting the error. When I enter credit card information and click submit, console is showing:
    Code:
    ReferenceError: check_form is not defined  index.php:197:19
    Clicking through to the line of code brings me to:

    Code:
    function doCollectsCardDataOnsite()
    {
       var str = $('form[name="checkout_payment"]').serializeArray();
    
       zcJS.ajax({
        url: "ajax.php?act=ajaxPayment&method=prepareConfirmation",
        data: str
      }).done(function( response ) {
       $('#checkoutPayment').hide();
       $('#navBreadCrumb').html(response.breadCrumbHtml);
       $('#checkoutPayment').before(response.confirmationHtml);
       $(document).attr('title', response.pageTitle);
     });
    }
    
        $(document).ready(function(){
          $('form[name="checkout_payment"]').submit(function() {
              $('.paymentSubmit').attr('disabled', true);
                      formPassed = check_form();
    I'm assuming this is tied to my failed attempts to implement One Page Checkout and Fast Easy Checkout (not at the same time). I guess I didn't revert a file back to its state prior to that failure. Any tips for me on how to track down the problem? Really hoping to get this working without a wipe and rebuild.

    Thanks,
    Scott

  9. #9
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Quote Originally Posted by HenryGale View Post
    Amature tearing his hair out here.

    I'm trying to get this working at www.skahfeestudios.com, and it's been throwing SQ-NONCE-FAILURE.

    I've switched template back to classic and still getting the error. When I enter credit card information and click submit, console is showing:
    Code:
    ReferenceError: check_form is not defined  index.php:197:19
    Clicking through to the line of code brings me to:

    Code:
    function doCollectsCardDataOnsite()
    {
       var str = $('form[name="checkout_payment"]').serializeArray();
    
       zcJS.ajax({
        url: "ajax.php?act=ajaxPayment&method=prepareConfirmation",
        data: str
      }).done(function( response ) {
       $('#checkoutPayment').hide();
       $('#navBreadCrumb').html(response.breadCrumbHtml);
       $('#checkoutPayment').before(response.confirmationHtml);
       $(document).attr('title', response.pageTitle);
     });
    }
    
        $(document).ready(function(){
          $('form[name="checkout_payment"]').submit(function() {
              $('.paymentSubmit').attr('disabled', true);
                      formPassed = check_form();
    I'm assuming this is tied to my failed attempts to implement One Page Checkout and Fast Easy Checkout (not at the same time). I guess I didn't revert a file back to its state prior to that failure. Any tips for me on how to track down the problem? Really hoping to get this working without a wipe and rebuild.

    Thanks,
    Scott
    I'd investigate all changes you've made to:
    - /includes/modules/payment/checkout_payment -- all files
    - /includes/modules/payment/checkout_confirmation -- all files
    - /includes/modules/payment/checkout (this directory was added by FEC, so should be gone if you removed FEC)
    - /includes/templates/EACH_OF_THE_TEMPLATES/jscript -- all files, make sure only the files still needed are present, and match your ZC version
    - /includes/templates/EACH_OF_THE_TEMPLATES/templates/tpl_checkout_payment_default.php
    - /includes/templates/EACH_OF_THE_TEMPLATES/templates/tpl_checkout_confirmation_default.php

    One of the best ways to identify possible culprits is to get 2 directories on your PC: one containing all your server's Zen Cart files, and one containing a fresh uncustomized copy of original Zen Cart files for that version of Zen Cart .... and then run a text-file-compare program to compare and identify all differences between the files, both in-file-alterations, and added/deleted files. Good tools for this are Beyond Compare by Scooter Software, and Araxis Merge, or the free WinMerge (see http://www.zen-cart.com/wiki/index.php/Useful_Tools )
    .

    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.

  10. #10
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Square Payment Module for Zen Cart [Support Thread]

    Quote Originally Posted by earmsby View Post
    Apparently Square only works for customer orders paid for and shipped in the US and Canada. This is what the Square support person is telling me. Does anyone have different information?
    Quote Originally Posted by RixStix View Post
    Quote Originally Posted by earmsby View Post
    Interesting. The customer service rep told me, "... customers can use international credit cards to make purchases through a Square merchant’s Online Store, but the order must be placed in the U.S. and shipped to a U.S. address."

    I was not aware that the ZenCart payment module sends the shipping address with the payment info, but maybe it does? Have others been able to process payments to customers with shipping addresses outside the US?

    I did write back to try to clarify where they consider the order to have been "placed" - at my location in the US or at the location where the customer is typing into a browser screen. Seems unclear to me.
    @earmsby, I asked Square to clarify this situation. Turns out the answer you were given was not fully correct. It was accurate if you were using the "Square Online Store" (which is a mini store within your Square account, to sell your items .... not your Zen Cart store), but inaccurate for your Zen Cart store since the Zen Cart integration uses Square's "E-commerce API" ... which does indeed accept international credit cards. ie: it'll accept all Visa/MasterCard/Amex/Discover/JCB cards, regardless of country, as long as it passes standard fraud-detection rules.
    .

    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.

 

 

Similar Threads

  1. WordPress® for Zen Cart® (wp4zen) [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 109
    Last Post: 1 Dec 2024, 01:36 PM
  2. Bambora/Beanstream Payment Module Support Thread
    By swguy in forum Addon Payment Modules
    Replies: 127
    Last Post: 26 Mar 2021, 04:13 PM
  3. v154 Support Thread: AddToAny for Zen Cart (The Universal Sharing Platform)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 8 Apr 2019, 02:39 PM
  4. Layaway Payment Module Support Thread
    By Danielle in forum Addon Payment Modules
    Replies: 0
    Last Post: 21 Nov 2006, 06:43 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