jtorral Posted January 9, 2009 Share Posted January 9, 2009 I set some cookies with the following syntax: setcookie("cookie_name", $username, time()+2592000); this works on my site fine when yo traverse using http://www.registeryourcamera.com but when you traverse with http://registeryourcamera.com omitting the www the cookies are not read. How can I resolve this? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/140188-help-with-cookies/ Share on other sites More sharing options...
premiso Posted January 9, 2009 Share Posted January 9, 2009 Force users via .htacces to always use www. But really look at the setcookie function set the domain to .domain.com and specify the path as "/" and it should work. Quote Link to comment https://forums.phpfreaks.com/topic/140188-help-with-cookies/#findComment-733589 Share on other sites More sharing options...
rhodesa Posted January 9, 2009 Share Posted January 9, 2009 setcookie("cookie_name", $username, time()+2592000, "/", ".registeryourcamera.com"); edit: beat me to it...but had the code already writen Quote Link to comment https://forums.phpfreaks.com/topic/140188-help-with-cookies/#findComment-733590 Share on other sites More sharing options...
premiso Posted January 9, 2009 Share Posted January 9, 2009 setcookie("cookie_name", $username, time()+2592000, "/", ".registeryourcamera.com"); edit: beat me to it...but had the code already writen Quick on the draw I thought I'd be dead, he put the gun to my head and this is what he said.... Hey, you did the code I just explained, props for complimenting my work ^.- lol EDIT: But remember this will only take effect for any new cookies. So you may have to logout etc to see the changed effects. Quote Link to comment https://forums.phpfreaks.com/topic/140188-help-with-cookies/#findComment-733591 Share on other sites More sharing options...
jtorral Posted January 9, 2009 Author Share Posted January 9, 2009 Thank you all. Much appreciated. seems to work now. Quote Link to comment https://forums.phpfreaks.com/topic/140188-help-with-cookies/#findComment-733601 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.