Page 277 of 282 FirstFirst ... 177227267275276277278279 ... LastLast
Results 2,761 to 2,770 of 2817
  1. #2761
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,507
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by diptimoy View Post
    Do the plugin works with square webpay ?
    As far as I'm aware.

  2. #2762
    Join Date
    Apr 2012
    Posts
    209
    Plugin Contributions
    1

    Default Re: One-Page Checkout [Support Thread]

    But Client says Square working with normal zencart checkout not working when one page checkout is enabled

  3. #2763
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,507
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by diptimoy View Post
    But Client says Square working with normal zencart checkout not working when one page checkout is enabled
    What version of (a) Zen Cart, (b) Square WebPay and (b) OPC?

    "Not working" means nothing, specifics will get a better response!

  4. #2764
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,547
    Plugin Contributions
    81

    Default Re: One-Page Checkout [Support Thread]

    Not sure how OPC works, but does it automatically handle the redirect from payment plugins to FILENAME_CHECKOUT_PAYMENT? For example, our Braintree plugin does contain such redirects.

  5. #2765
    Join Date
    Apr 2012
    Posts
    209
    Plugin Contributions
    1

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    What version of (a) Zen Cart, (b) Square WebPay and (b) OPC?

    "Not working" means nothing, specifics will get a better response!
    a) zencart 158
    b) https://www.zen-cart.com/downloads.php?do=file&id=2345 , last updated on 18th feb 2023 one
    c) The one updated on 20 aug 2023

    "It says "We have a problem on our end. So Sorry! Please report this error to the Store Owner: SQ-MISSING-TOKEN"
    but if we disable OPC and do normal checkout webpay works fine

    even tried this
    For those wondering about 1.5.8, WebPay works exactly as expected in Zen Cart 1.5.8 WITHOUT One Page Checkout.



    If you are going to use both One Page Checkout AND Square WebPay with Zen Cart, you will need to get the OLD square javascript file from includes/modules/pages/checkout_payment/ called jscript_square.php "

    But did not work

  6. #2766
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,696
    Plugin Contributions
    9

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by diptimoy View Post
    a) zencart 158
    b) https://www.zen-cart.com/downloads.php?do=file&id=2345 , last updated on 18th feb 2023 one
    c) The one updated on 20 aug 2023

    "It says "We have a problem on our end. So Sorry! Please report this error to the Store Owner: SQ-MISSING-TOKEN"
    but if we disable OPC and do normal checkout webpay works fine

    even tried this
    For those wondering about 1.5.8, WebPay works exactly as expected in Zen Cart 1.5.8 WITHOUT One Page Checkout.



    If you are going to use both One Page Checkout AND Square WebPay with Zen Cart, you will need to get the OLD square javascript file from includes/modules/pages/checkout_payment/ called jscript_square.php "

    But did not work
    for those wondering, lets talk about what i know.

    • i am the author of square webPay, ie i coded the module.
    • there are numerous websites out there using this payment module with OPC.
    • i spent an inordinate amount of time to get it to play nice with OPC.
    • there is NO need for any old javascript file in the directory mentioned above.


    now lets look at the message listed above. that only gets generated right here on the 3rd line in the following code fragment (lines 435-438):

    PHP Code:
    if ($error['category'] === 'INVALID_REQUEST_ERROR') {
                            
    trigger_error("Square Connect [configuration] error. \nResponse Body:\n" print_r($e->getResponseBody(), true) . "\nResponse Headers:\n" print_r($e->getResponseHeaders(), true), E_USER_NOTICE);
                            
    $messageStack->add_session('checkout_payment'MODULE_PAYMENT_SQ_WEBPAY_TEXT_MISCONFIGURATION'error');
                            
    zen_redirect(zen_href_link(FILENAME_CHECKOUT_PAYMENT'''SSL'truefalse)); 
    if one looks at the 2nd line of the code fragment, there is a call to the trigger_error function. in a properly configured server, that will generate a log file.

    the log file will provide more information as to why OPC is not working.

    provide the log and perhaps a solution will be forth coming.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  7. #2767
    Join Date
    Nov 2006
    Posts
    45
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    I installed one_page_checkout-2.4.6, on ZC 1.5.7d, and I am using westminster_new_2.1 template.
    When I click on "Confirm Order", the program does not process order. I found a thread about someone having the same problem using 1.5.5, but it did not seem to apply to 1.5.7d. It doesn't matter which payment selection I try. The button changes on hover and shows the hand pointer. It just doesn't do anything else. No error messages. I do not see any errors in the logs either.

    Does OPC work with westminster_new_2.1?
    Could you please give me advice on how to proceed?
    Katrina Robb
    KatalinaKlark.com

  8. #2768
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,507
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by katrobb View Post
    I installed one_page_checkout-2.4.6, on ZC 1.5.7d, and I am using westminster_new_2.1 template.
    When I click on "Confirm Order", the program does not process order. I found a thread about someone having the same problem using 1.5.5, but it did not seem to apply to 1.5.7d. It doesn't matter which payment selection I try. The button changes on hover and shows the hand pointer. It just doesn't do anything else. No error messages. I do not see any errors in the logs either.

    Does OPC work with westminster_new_2.1?
    Could you please give me advice on how to proceed?
    That westminster_new template, despite its name, is very old. It might not load a compatible version of jQuery. You can check by (on a Windows computer), pressing the F12 key while you're viewing your site's checkout_one page and then clicking on the "Console" tab. OPC's jQuery will (if able) write status messages to the console, but if jQuery isn't loaded you'll see a console error message to that effect.

  9. #2769
    Join Date
    Sep 2013
    Location
    Devon, UK
    Posts
    76
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by numinix View Post
    Not sure how OPC works, but does it automatically handle the redirect from payment plugins to FILENAME_CHECKOUT_PAYMENT? For example, our Braintree plugin does contain such redirects.
    OPC catches the NOTIFY_HEADER_START_CHECKOUT_PAYMENT notification from FILENAME_CHECKOUT_PAYMENT ('checkout_payment') and redirects to FILENAME_CHECKOUT_ONE ('checkout_one').

  10. #2770
    Join Date
    Nov 2023
    Location
    Hounslow
    Posts
    81
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    ZC 1.5.8,
    OPC 2.4.6 (2023-08-19),
    SFL 1.9a

    Hi,
    Has anyone got this addon working with Save for Later (https://www.zen-cart.com/downloads.php?do=file&id=872) and if so can you supply the changes to the cart page for me?

 

 

Similar Threads

  1. Set number of products displayed per page (support thread)
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 146
    Last Post: 2 Nov 2023, 12:50 AM
  2. v151 Banners In Main Page - Support Thread
    By stevesh in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Sep 2021, 03:36 PM
  3. v151 Site Map/Page Not Found: Combined [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 4 Jan 2016, 02:19 PM
  4. v151 PayPal Express Checkout Using NVP 84.0 [Support Thread]
    By lat9 in forum Addon Payment Modules
    Replies: 32
    Last Post: 28 Dec 2015, 04:54 PM
  5. Checkout Amazon Style -- Support Thread
    By CJPinder in forum All Other Contributions/Addons
    Replies: 72
    Last Post: 13 Apr 2011, 08:18 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