-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cookie Dialog Shows Up Again On Different Pages #16
Comments
Hi @glennraya, After consent has been defined, can you see the cookie being set? If so, could you check if cookies are sent in the following requests headers? Thanks! |
make sure the domain is set correctly, I had my domain set to
something.com in my local environment but the cookie was using .something.com
It works if I use www.something.com in my local env.
|
Hi, |
In my case the cookie acceptance submission was blocked because it attempted to load over HTTP instead of HTTPS. Adding a meta worked for me: meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" |
Same issue for me. It is https, I already set dotenv the domain is https and added |
I have the same issue. Last time it happened to me was when I tried to delete all cookies client-side by google chrome relative button. Once I deleted I got the same problem, each time I refresh the page or if I go on any page with the consent block on it I always get the banner showing up. |
Apparently if you run |
Hi, I'm using Laravel 10+ and Inertia (React) SSR. The cookie consent dialog always shows up again on different pages other than the
index
route. After I navigate to the home page, that's when the dialog never shows up again on different pages on the site. Am I missing some configs? ThanksThe text was updated successfully, but these errors were encountered: