Page 11 of 62 FirstFirst ... 9101112132161 ... LastLast
Results 101 to 110 of 611
  1. #101
    Join Date
    Jun 2009
    Location
    Sparta, TN
    Posts
    158
    Plugin Contributions
    0

    Default Re: Square WebPay support thread.

    Quote Originally Posted by lat9 View Post
    Since the site is running https-all-the-time, your site's root .htaccess file should 'support' that. Make a backup copy and add the following clauses close to the top of the file to 'force' the access to https://vinyldecalsuperstore.com/{whatever} when the access is made as

    vinyldecalsuperstore.com/VDSstore/{whatever}
    http://vinyldecalsuperstore.com/{whatever}
    http://www.vinyldecalsuperstore.com/{whatever}
    https://www.vinyldecalsuperstore.com/{whatever}

    Code:
    RewriteCond %{SERVER_PORT} 80 [OR]
    RewriteCond %{HTTP_HOST} ^www\.vinyldecalsuperstore\.com$ [NC]
    RewriteRule (.*) https://vinyldecalsuperstore.com/$1 [R=301,L]
    I've got a bunch of this stuff in my .htaccess folder right now, including a domain that points to my primary vinyldecalsuperstore.com
    Code:
    RewriteCond %{HTTP_HOST} ^vdsdecal\.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.vdsdecal\.com$
    RewriteRule ^/?$ "https\:\/\/vinyldecalsuperstore\.com\/" [R=301,L]
    RewriteCond %{HTTPS} off
    RewriteCond %{HTTP:X-Forwarded-SSL} !on
    RewriteCond %{HTTP_HOST} ^vinyldecalsuperstore\.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.vinyldecalsuperstore\.com$
    RewriteRule ^/?$ "https\:\/\/vinyldecalsuperstore\.com\/" [R=301,L]
    RewriteCond %{HTTP_HOST} ^.*$
    RewriteRule ^/?$ "https\:\/\/vinyldecalsuperstore\.com\/VDSstore\/" [R=301,L]
    RewriteBase /
    
    # Rewrites all URLS without VDSstore in them
    RewriteCond %{REQUEST_URI} !^/VDSstore/
    
    # Rewrites all URLS [Replace "example" with the actual domain, without the TLD (.com, .net, .biz, etc)]
    RewriteCond %{HTTP_HOST} ^(www\.)?vinyldecalsuperstore\.
    
    # Rewrite all those to insert /folder
    RewriteRule ^(.*)$ /VDSstore/$1 [L]
    Is there a particular order I should have all this and if so, where should I insert the code you gave me?
    Thank you so very much!
    My store - closed 12/05/2023
    1.5.7d (upgraded from 1.5.7b), clone a template (cloned Responsive Classic Template), Sitemap XML v4.0, Square WebPay, PayPal Express Checkout, PHP Version: 7.4.29 (Zend: 3.4.0)

  2. #102
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,668
    Plugin Contributions
    11

    Default Re: Square WebPay support thread.

    Quote Originally Posted by VDecalS View Post
    I've got a bunch of this stuff in my .htaccess folder right now, including a domain that points to my primary vinyldecalsuperstore.com
    Code:
    RewriteCond %{HTTP_HOST} ^vdsdecal\.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.vdsdecal\.com$
    RewriteRule ^/?$ "https\:\/\/vinyldecalsuperstore\.com\/" [R=301,L]
    RewriteCond %{HTTPS} off
    RewriteCond %{HTTP:X-Forwarded-SSL} !on
    RewriteCond %{HTTP_HOST} ^vinyldecalsuperstore\.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.vinyldecalsuperstore\.com$
    RewriteRule ^/?$ "https\:\/\/vinyldecalsuperstore\.com\/" [R=301,L]
    RewriteCond %{HTTP_HOST} ^.*$
    RewriteRule ^/?$ "https\:\/\/vinyldecalsuperstore\.com\/VDSstore\/" [R=301,L]
    RewriteBase /
    
    # Rewrites all URLS without VDSstore in them
    RewriteCond %{REQUEST_URI} !^/VDSstore/
    
    # Rewrites all URLS [Replace "example" with the actual domain, without the TLD (.com, .net, .biz, etc)]
    RewriteCond %{HTTP_HOST} ^(www\.)?vinyldecalsuperstore\.
    
    # Rewrite all those to insert /folder
    RewriteRule ^(.*)$ /VDSstore/$1 [L]
    Is there a particular order I should have all this and if so, where should I insert the code you gave me?
    Thank you so very much!
    you are having a token problem!

    https://vinyldecalsuperstore.com/VDS...ay_handler.php

    is returning a 417. fix that, and then lets see what happens.

    i think there is info on this thread on it. but let us know if you need help with it.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  3. #103
    Join Date
    Jun 2009
    Location
    Sparta, TN
    Posts
    158
    Plugin Contributions
    0

    Default Re: Square WebPay support thread.

    Quote Originally Posted by carlwhat View Post
    you are having a token problem!

    https://vinyldecalsuperstore.com/VDS...ay_handler.php

    is returning a 417. fix that, and then lets see what happens.

    i think there is info on this thread on it. but let us know if you need help with it.
    That's probably it. My Square Developer OAuth page says I have 8 Active tokens. Only I don't know how to even view them!
    My store - closed 12/05/2023
    1.5.7d (upgraded from 1.5.7b), clone a template (cloned Responsive Classic Template), Sitemap XML v4.0, Square WebPay, PayPal Express Checkout, PHP Version: 7.4.29 (Zend: 3.4.0)

  4. #104
    Join Date
    Jun 2009
    Location
    Sparta, TN
    Posts
    158
    Plugin Contributions
    0

    Default Re: Square WebPay support thread.

    In Square Developer: I've replaced my token, and replaced my OAuth Application Secret. So now I'm up to 9 active tokens.
    then;
    In my Zen-Cart I removed the Square WebPay Module, then Installed it with the new OAuth Application Secret and tried to Authorize with the green bar and still get the Debug logs as stated in #94
    I'm feeling beaten down. Walking away from this for a bit before trying the restore from backup. I still have PayPal for now.

    Thanks all.
    My store - closed 12/05/2023
    1.5.7d (upgraded from 1.5.7b), clone a template (cloned Responsive Classic Template), Sitemap XML v4.0, Square WebPay, PayPal Express Checkout, PHP Version: 7.4.29 (Zend: 3.4.0)

  5. #105
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,668
    Plugin Contributions
    11

    Default Re: Square WebPay support thread.

    Quote Originally Posted by VDecalS View Post
    In Square Developer: I've replaced my token, and replaced my OAuth Application Secret. So now I'm up to 9 active tokens.
    then;
    In my Zen-Cart I removed the Square WebPay Module, then Installed it with the new OAuth Application Secret and tried to Authorize with the green bar and still get the Debug logs as stated in #94
    I'm feeling beaten down. Walking away from this for a bit before trying the restore from backup. I still have PayPal for now.

    Thanks all.
    but we are so close....

    again, the problem is here:

    https://vinyldecalsuperstore.com/VDS...ay_handler.php

    this is returning a 417. in a fully functioning implementation, it should return a 200.

    on this line:

    https://github.com/proseLA/square_we...andler.php#L22

    set that to true, ie:

    PHP Code:
    $verbose true
    then, click on the link above, and lets see what the error message is.

    just that, and we should have some good info to go on.

    also, are we not getting any logs? we should have some logs if the token is not refreshed properly.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

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

    Default Re: Square WebPay support thread.

    Perhaps these instructions will help.

    Solely put together by me and not a sanctioned part of the mod.

    https://myzencarthost.com/index.php?...ay-Module.html

  7. #107
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,668
    Plugin Contributions
    11

    Default Re: Square WebPay support thread.

    Quote Originally Posted by VDecalS View Post
    In Square Developer: I've replaced my token, and replaced my OAuth Application Secret. So now I'm up to 9 active tokens.
    then;
    In my Zen-Cart I removed the Square WebPay Module, then Installed it with the new OAuth Application Secret and tried to Authorize with the green bar and still get the Debug logs as stated in #94
    I'm feeling beaten down. Walking away from this for a bit before trying the restore from backup. I still have PayPal for now.

    Thanks all.
    ok, we were going down the wrong track. this problem is solved.

    admin -> configuration -> sessions -> recreate session.

    this value was set to true. setting it to false has fixed the time out error.

    i will have to explore a bit as to what that config value does and why it does not destroy the session in paypal, but it destroys it in square.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #108
    Join Date
    Jun 2009
    Location
    Sparta, TN
    Posts
    158
    Plugin Contributions
    0

    Default Re: Square WebPay support thread.

    carlWHAT? called the savior by the chief bottle washer... AND ME!

    cake sent via PayPal
    My store - closed 12/05/2023
    1.5.7d (upgraded from 1.5.7b), clone a template (cloned Responsive Classic Template), Sitemap XML v4.0, Square WebPay, PayPal Express Checkout, PHP Version: 7.4.29 (Zend: 3.4.0)

  9. #109
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,668
    Plugin Contributions
    11

    Default Re: Square WebPay support thread.

    Quote Originally Posted by VDecalS View Post
    carlWHAT? called the savior by the chief bottle washer... AND ME!

    cake sent via PayPal


    thank you.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  10. #110
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,668
    Plugin Contributions
    11

    Default Re: Square WebPay support thread.

    Quote Originally Posted by carlwhat View Post
    ok, we were going down the wrong track. this problem is solved.

    admin -> configuration -> sessions -> recreate session.

    this value was set to true. setting it to false has fixed the time out error.

    i will have to explore a bit as to what that config value does and why it does not destroy the session in paypal, but it destroys it in square.

    best.
    ok, this worked for a hot minute, but now it is not.

    i have some more information, in case someone would like to chime in... which would be appreciated.

    standard 3 page checkout. on chrome, one gets to the checkout confirmation page. at the end of the tpl_checkout_confirmation_default.php script, the session looks intact. HOWEVER, after the page is completely rendered, the session is destroyed. this is confirmed by clicking on the my account link (without clicking on the order confirmation submit button), and it directs one to a login page, which is unexpected behavior.

    interestingly enough, this behavior does NOT happen on firefox. the expected process happens, and there is no destruction of the session.

    apparently this behavior does NOT happen with paypal express checkout on firefox or on chrome (ie it works).

    session settings can be seen here:

    https://www.dropbox.com/s/8tk970t6c2...06-12.png?dl=0

    if anyone has any ideas, i am listening.

    thanks in advance.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 
Page 11 of 62 FirstFirst ... 9101112132161 ... LastLast

Similar Threads

  1. Square Payment Module for Zen Cart [Support Thread]
    By DrByte in forum Addon Payment Modules
    Replies: 749
    Last Post: 5 Sep 2023, 01:16 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  3. Square Support for SqPaymentForm ending 15th July 2022
    By brittainmark in forum Addon Payment Modules
    Replies: 1
    Last Post: 9 Apr 2022, 02:40 PM
  4. v156 Square Payments and strange request from Square
    By ianhg in forum General Questions
    Replies: 4
    Last Post: 14 Nov 2020, 11:14 AM
  5. v156 PWA, Offline support Push notifications addon [Support Thread]
    By perfumbg in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 May 2019, 02:27 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