Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do we still need to worry about users turning off cookies?

I've noticed that a lot of sites don't bother anymore with work-arounds so users who have turned their cookies off can still get the same experience on the site. Has that problem just gone away in modern web development? Have we gotten to a point where nobody does it, so we don't need to bother?

like image 918
dsimard Avatar asked Oct 27 '09 11:10

dsimard


People also ask

Are cookies still relevant?

However, first-party cookies that track basic data about your own website's visitors are still safe. In fact, in Google's 2021 announcement, the tech giant called first-party relationships "vital." So, ultimately, any first-party data you gain from your website's visitors on all browsers will still remain in-tact.

Are we moving away from cookies?

Google is again delaying plans to phase out Chrome's use of third-party cookies — the files websites use to remember preferences and track online activity.

Is removing cookies a good idea?

You definitely should not accept cookies – and delete them if you mistakenly do. Outdated cookies. If a website page has been updated, the cached data in cookies might conflict with the new site. This could give you trouble the next time you try to upload that page.

What percentage of people disable cookies?

It turns out that only 0.33% of visitors disable one or more cookie categories. When visitors disable cookies, these are primarily functional cookies (53.8%).


Video Answer


3 Answers

I think I put this in the same category as JavaScript. Most people will have cookies enabled, but there will be a few people who have them turned off. There isn't the scare like there was in the mid 90s about evil corporations tracking you all over the net etc. People have become more accepting about how the web works and what is required to have the convenience of web sites remembering who you are etc.

like image 112
kemiller2002 Avatar answered Oct 21 '22 23:10

kemiller2002


Some people still turn off cookies every once in a while. Usually because they wanted to test something and then forget to leave them off. Nowadays most web apps require cookies on so I think it's perfectly acceptable that instead of complex workarounds to provide the same user experience with or without cookies you can live with just a simple check and a message stating that without cookies the user won't be able to use the site.

There are lots of major websites that behave this way.

like image 42
Miguel Ventura Avatar answered Oct 22 '22 00:10

Miguel Ventura


My 2c: cookies are good by default and Javascript is evil by default.

As to what general user sentiment is... I'd do cookie detection still so that you can display a meaningful error rather than simply not working if your users are blocking cookies for whatever reason. Don't bother trying to work around it though.

like image 1
Matthew Scharley Avatar answered Oct 22 '22 01:10

Matthew Scharley