We occasionally get a similar problem.
Try using a private/incognito browser. Just click on the browser settings to find it in the dropdown that opens. This should load the browser without the use of any cookies. If everything works as it should you need to clear the cache and saved files in the browser you are using.
Cookies must be enabled to purchase online
Re: Cookies must be enabled to purchase online
I will put that file back into that directory.
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => 'neperformancemustang.com',
'path' => '/catalog/',
'samesite' => 'Lax',
'secure' => true,
];
It appears the site is working properly now. This same behavior occurs last week as well.
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => 'neperformancemustang.com',
'path' => '/catalog/',
'samesite' => 'Lax',
'secure' => true,
];
It appears the site is working properly now. This same behavior occurs last week as well.
-
raiwa
- Certified Developer
- Posts: 1640
- Joined: Sat Dec 21, 2019 8:08 am
- Phoenix Version: 1.1.0.6
- : Buy Me A Beverage
- Has thanked: 70 times
- Been thanked: 152 times
Re: Cookies must be enabled to purchase online
I still get the cookie page when trying to checkout (not logged in) and getting redirected to login page . Tried with firefox/windows and safari/ipad
'domain' => '.neperformancemustang.com',
Note the dot in front of ".neperformancemustang.com"
This covers all variants: www.neper..., neper... etc.
You should use:
'domain' => '.neperformancemustang.com',
Note the dot in front of ".neperformancemustang.com"
This covers all variants: www.neper..., neper... etc.
Public Phoenix Change Log Cheat Set on Google Sheets
https://docs.google.com/spreadsheets/d/ ... sp=sharing
Need Help?viewtopic.php?f=10&t=27
https://docs.google.com/spreadsheets/d/ ... sp=sharing
Need Help?viewtopic.php?f=10&t=27
-
raiwa
- Certified Developer
- Posts: 1640
- Joined: Sat Dec 21, 2019 8:08 am
- Phoenix Version: 1.1.0.6
- : Buy Me A Beverage
- Has thanked: 70 times
- Been thanked: 152 times
Re: Cookies must be enabled to purchase online
I do not get the cookie page any more!
Public Phoenix Change Log Cheat Set on Google Sheets
https://docs.google.com/spreadsheets/d/ ... sp=sharing
Need Help?viewtopic.php?f=10&t=27
https://docs.google.com/spreadsheets/d/ ... sp=sharing
Need Help?viewtopic.php?f=10&t=27
Re: Cookies must be enabled to purchase online
The issue is occurring again and even in Incognito mode the checkout doesn't work.
-
azpro
- Contributor
- Posts: 177
- Joined: Fri Nov 06, 2020 8:25 am
- Phoenix Version: v1.1.0.6
- Has thanked: 30 times
- Been thanked: 34 times
Re: Cookies must be enabled to purchase online
Do you have a tool to compare your local files to files on server?
If so - check for differences - check especially the files with latest dates file-last-modified ...
If so - check for differences - check especially the files with latest dates file-last-modified ...
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Cookies must be enabled to purchase online
Check again your LIVE /includes/configure.php file to *ensure* it has that `.` at the domain.
I am not here to build for you.
I am here to build with you. Let's help each other.
I am here to build with you. Let's help each other.
Re: Cookies must be enabled to purchase online
Yes
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => '.neperformancemustang.com',
'path' => '/catalog/',
'samesite' => 'Lax',
'secure' => true,
];