some1ataplace

Results 96 comments of some1ataplace

Some research: https://stackoverflow.com/questions/3742675/sharing-django-sessions-on-specific-subdomains https://stackoverflow.com/questions/556907/how-to-get-distinct-django-apps-on-same-subdomain-to-share-session-cookie https://stackoverflow.com/questions/18492576/share-cookie-between-subdomain-and-domain https://serverfault.com/questions/153409/can-subdomain-example-com-set-a-cookie-that-can-be-read-by-example-com https://stackoverflow.com/questions/2116860/django-session-cookie-domain-with-multiple-domains https://stackoverflow.com/questions/53349940/cookie-behavior-in-django https://stackoverflow.com/questions/2043138/could-not-get-cookie-from-another-parent-domain-in-django https://stackoverflow.com/questions/5258126/domain-set-cookie-for-subdomain https://stackoverflow.com/questions/62486176/how-to-disable-cookies-in-django-manually https://stackoverflow.com/questions/5671451/creating-a-javascript-cookie-on-a-domain-and-reading-it-across-sub-domains https://stackoverflow.com/questions/4713019/setting-cross-subdomain-cookie-with-javascript https://developers.livechat.com/updates/setting-cookies-to-subdomains-in-javascript https://stackoverflow.com/questions/12281038/set-multiple-cookies-with-the-same-name-in-django https://docs.djangoproject.com/en/4.0/ref/request-response/#django.http.HttpResponse.set_cookie https://stackoverflow.com/questions/27644296/python-setting-cookie-into-another-website https://code.djangoproject.com/ticket/10554 https://stackoverflow.com/questions/15124308/django-cookies-and-headers https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie https://scripts.cmbuckley.co.uk/cookies.php **Two different domains:** If I add the following to...

I may be missing something but I only created a required cookie group and a cookie within that required cookie group. The cookie bar did not show up when I...

I am using this code in my base.html: https://github.com/bmihelac/django-cookie-consent/blob/master/tests/core/templates/test_page.html#L70-L108 The cookiebar.js file is used for the cookie bar like the name suggests and should be located your static root django...

@MrCordeiro Thanks and great work for looking this over. Your suggestions allowed me to think of this: You can call `opts.beforeDeclined();` anywhere after `const opts = Object.assign(defaults, options);` is defined...

I am still wondering if beforeDeclined() is truly correct though because right now my PR executes it when the user clicks decline on the cookie bar and it isn't truly...

I was able to reproduce the first part of this issue. Add to your settings.py MIDDLEWARE setting: `'cookie_consent.middleware.CleanCookiesMiddleware',` A guide to setting the middleware should really be added to the...

Thanks for the update @sergei-maertens. I still would love for this library to be transferred to jazzband to ensure its long term survival. In order to do that though, @bmihelac...

To summarize, the problem is coming from django-honeypot's HoneypotViewMiddleware only when I tried out all of the django-honeypot middlewares: https://github.com/jamesturk/django-honeypot/blob/main/honeypot/middleware.py#L23-L34 That middleware seems to be returning None for request.COOKIES.get(settings.COOKIE_CONSENT_NAME) inside...

@qkral You might be using an older version of django-cookie-consent. Please update the a more recent version and try again. You need to do the same thing in your template...