Jump to content

Can't delete cookies....


Ninjakreborn

Recommended Posts

<?php
session_start();
setcookie("user_id", "", time()-3600, "/", "www.mystagingsite1.net");
setcookie("territory", "", time()-3600, "/", "www.mystagingsite1.net");
setcookie("membership_level", "", time()-3600, "/", "www.mystagingsite1.net");
session_destroy();
header("Location: gateway.php");
?>

 

I am setting them using set cookie like:

<?php
	setcookie("user_id", $row['user_id'], time()+3600, "/", "www.mystagingsite1.net");
	setcookie("territory", $row['territory'], time()+3600, "/", "www.mystagingsite1.net");
	setcookie("membership_level", $row['membership_level'], time()+3600, "/", "www.mystagingsite1.net");
?>

 

This is not deleting cookies.  It should be.  If I do this and it redirects me then I revisit the homepage, I am still logged in even after doing this. I have tried doing this in about 20 different ways and these stupid sessions won't die. I even tried unsetting them manually as well, nothing is working.

Advice?

Link to comment
https://forums.phpfreaks.com/topic/212997-cant-delete-cookies/
Share on other sites

this could be nothing, but your it looks like your setting cookies in the future : )

will this work?

setcookie("user_id", "", time()-5000, "/", "www.mystagingsite1.net");
setcookie("territory", "", time()-5000, "/", "www.mystagingsite1.net");
setcookie("membership_level", "", time()-5000, "/", "www.mystagingsite1.net");

 

Link to comment
https://forums.phpfreaks.com/topic/212997-cant-delete-cookies/#findComment-1109314
Share on other sites

Pardon my ignorance here but:-

<?php
session_start();
setcookie("user_id", "", "0", "/", "www.mystagingsite1.net");
setcookie("territory", "", "0", "/", "www.mystagingsite1.net");
setcookie("membership_level", "", "0", "/", "www.mystagingsite1.net");

unset($_COOKIE);
unset($_SESSION);

session_destroy();
header("Location: gateway.php");
?>

 

Wouldn't that be a more pragmatic approach to killing off cookies?

 

Cheers,

Rw

Link to comment
https://forums.phpfreaks.com/topic/212997-cant-delete-cookies/#findComment-1109363
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.