I have this module installed, but I receive two cookies upon sending a filled-out contact form as well as one sesshin cookie upon login.

In other words: Login is NOT prevented.

(this in Opera browser as well as FireFox. Site is bornholmerweb.net)

& what would be the whole point with this module then?

Besides: The 'demo' (civicuk) send me ten cookies - no-questions-asked!!!

Comments

Egmund’s picture

Issue summary: View changes

edited w. problems from demo site

CarlHinton’s picture

Issue summary: View changes

Turning off cookies with Drupal seems to be almost impossible. This is because they are specifically turned on in the bootstrap.inc - see function drupal_environment_initialize().

I have tried adding the following into settings.php

  ini_set('session.use_cookies', 0);
  ini_set('session.use_only_cookies', 0);
  ini_set('session.use_trans_sid',    1);

Which seems to work with some cookies - but not all of them.

Definitely subscribing.