
Originally Posted by
VDecalS
I ran a search in the tool kit for COOKIE_SAMESITE (ran in every option) and found just these two:
/home/vinyld6/public_html/VDSstore/***/includes/init_includes/init_sessions.php
Line #25 : $samesite = (defined('COOKIE_SAMESITE')) ? COOKIE_SAMESITE : 'lax';
and
/home/vinyld6/public_html/VDSstore/includes/init_includes/init_sessions.php
Line # 42 : $samesite = (defined('COOKIE_SAMESITE')) ? COOKIE_SAMESITE : 'lax';
PHP Version: 7.2.34 (Zend: 3.2.0)
Zen Cart 1.5.7d
Database Patch Level: 1.5.7b
v1.5.7b [2021-02-20 16:19:18] (Version Update 1.5.6->1.5.7b)
v1.5.6c [2021-02-20 16:19:17] (Version Update 1.5.5->1.5.6c)
v1.5.5 [2016-03-30 10:00:19] (Version Update 1.5.4->1.5.5)
v1.5.4 [2016-03-30 10:00:18] (Version Update 1.5.3->1.5.4)
v1.5.3 [2016-03-30 10:00:18] (Version Update 1.5.2->1.5.3)
v1.5.2 [2016-03-30 10:00:17] (Version Update 1.5.1->1.5.2)
v1.5.1 [2016-03-30 10:00:16] (Version Update 1.5.0->1.5.1)
v1.5.0 [2016-03-30 10:00:15] (Version Update 1.3.9->1.5.0)
v1.3.9b [2010-05-15 15:00:01] (Version Update 1.3.8->1.3.9b)
v1.3.8 [2009-06-14 16:02:34] (Fresh Installation)
v1.3.8 [2009-06-14 16:02:34] (Fresh Installation)
Thinking I had a corruption during upload, I was just about to delete all the Square WebPay files and start over. I also have FULL backups prior to the install of Square WebPay that I can restore.
Thanks again carlwhat
In addition, check your storefront /includes/configure.php file to make sure that both the HTTP_SERVER and HTTPS_SERVER definitions start with 'https' and that ENABLE_SSL is set to 'true' (including the quotes).
If those are all OK, for the SAMESITE_COOKIE setting (although I've not seen any other time-out issues reported in this support-thread), try creating a file named samesite_cookie.php in the storefront /includes/extra_datafiles directory that contains:
PHP Code:
<?php
// -----
// Identify that the site uses the 'samesite' cookie setting of 'None', since some payments (when returning
// from a 3DS verification) need the cookie set this way.
//
if (ENABLE_SSL == 'true') {
define('COOKIE_SAMESITE', 'none');
}
That 'might' work, but I'm on a guessing path here!
Bookmarks