Tagged Questions
The setcookie tag has no wiki summary.
17
votes
2answers
6k views
Cookies on localhost with explicit domain
I must be missing some basic thing about cookies. On localhost, when I set a cookie on server side and specify the domain explicitly as localhost (or .localhost). the cookie does not seem to be ...
8
votes
4answers
8k views
How to parse HttpWebResponse.Headers.Keys for a Set-Cookie session id returned
I'm trying to create an HttpWebRequest/HttpWebResponse session with an ASP.NET website to later parse an HTML form through url params (this part I know how to do), but I do not understand how to parse ...
5
votes
3answers
130 views
PHP cookie writes on incorrect domain
I have a cookie that I use on my app. It looks like this:
+-------+-------+-----------------------+-------+----------+
| Name | Value | Domain | Path | Expires |
...
4
votes
3answers
88 views
Cookies - set across multiple domains
My company has a setup as follows:
subdomain1.domain1.com
subdomain2.domain1.com
subdomain3.domain1.com
subdomain4.domain1.com
subdomain5.domain1.com
subdomain6.domain1.com
subdomain1.domain2.com
...
4
votes
2answers
1k views
How do I set a cookie with a (ruby) rack middleware component?
I'm writing a rack middleware component for a rails app that will need to conditionally set cookies. I am currently trying to figure out to set cookies. From googling around it seems like this ...
3
votes
1answer
24 views
Setting a Site Wide Cookie
Here's what I hope is a quick question...
I am trying to set a cookie that can be used sitewide. I'm creating a lead generation type site. I want users to fill out a form in order to access exclusive ...
3
votes
3answers
59 views
PHP getting expiring time of a cookie
Can I get the expiring time of a cookie which is already set?
For example, I have set a cookie:
setcookie("test_cookie","some value", time()+3600*24*30);
Now can i get the time when the test_cookie ...
3
votes
1answer
491 views
IE8 not saving cookie values?
I'm having some problems with IE8 respecting a cookie I'm setting via the jQuery cookie plugin. Things are working fine in Firefox, Chrome, Safari, IE6 and IE7 (via IETester), but IE8 just doesn't ...
3
votes
3answers
1k views
php setcookie domain
Some application, not written by me, and not in PHP, creates a cookie for the domain "www.domain.com".
I am trying to replace that cookie. So in php I did:
setcookie('mycookie','mydata',time() + ...
3
votes
1answer
171 views
Cookie Expiration times
Is is possible to find out when a cookie expires, I have set my cookie up doing this
$_COOKIE[] = setcookie("bangUser", $unique, time() + (60*60*24*30));
is possible to print out is expiration date ...
3
votes
2answers
4k views
IE8 not applying cookies across domain appropriately — only on one machine
I have any interesting problem that has me totally stumped.
I have a piece of production code that I built that reads an IBM LTPA token cookie set by a machine managed by another dept, validates it, ...
2
votes
2answers
99 views
cURL doesn't set a cookie anymore, but why?
My cURL script does not work anymore (so keep in mind it DID work before) on my localhost (so it DOES work on my external host, hence: it might be the server settings):
This script worked fine before ...
2
votes
1answer
70 views
PHP cookie will not set until the page reloads TWICE. What's going on?
Okay, here's a strange one. I'm attempting to deal with my first login system so bear with me.
There are 2 pages. PageA.php has the login form. Fill out the form and submit to PageB.php. PageB ...
2
votes
2answers
52 views
php setcookie explicitly to localhost
I am trying to coordinate cookies that were set by setcookie in PHP with cookie in Rails. The problem is when I set the cookie to localhost domain in PHP with COOKIE_DOMAIN false it sets it to domain ...
2
votes
1answer
56 views
custom setcookie implementation with phpunit
I'm trying to override the setcookie implementation using the test_helpers PECL extension without any luck.
$username = 'test';
set_setcookie_overload(function() { error_log('setcookie ...
2
votes
1answer
78 views
My CGI script cookie set and get
I have a site on CGI and working fine yesterday but suddenly its cookie stop working. I am unable to set cookie and get cookie in my script. below is my code.
To set cookie
#!/usr/bin/perl
use ...
2
votes
4answers
127 views
Designing a secure auto login cookie system in PHP
I want to have an auto login option check for a user. Basically that means a cookie will be stored on the client side.
Now the question is, how do I make it secure so the cookie will can not be ...
2
votes
3answers
42 views
Any reason why this code snippet wouldn't set a cookie properly?
This little PHP snippet is used to set a cookie that lets me determine whether or not a user is logged in. For some reason, after I use the javascript to redirect, none of my cookies are set any more. ...
2
votes
2answers
149 views
Outputting getcookie variable in PHP without browser refresh
I am using the following code to output a block of content without a cookie, and another number if the cookie has been set. Problem is that the getcookie variable doesn't work until the page has been ...
2
votes
2answers
158 views
setcookie + strtotime('tomorrow') give wrong date
Today 05/18/2011
If i do
echo date("H:i m/d/Y", strtotime("tomorrow"));
i get 00:00 05/19/2011 as it should be but if i use the same function in setcookie like:
setcookie("wls_yesterday_review", ...
2
votes
1answer
129 views
setcookie doesnt work
After I set this cookie it doesnt work. When I leave the domain part away and test it on the localhost I can echo the cookie tho
setcookie("email",$email,0, "/", ".domainname.com");
2
votes
4answers
165 views
infinte loop when user don't accept cookies
I save my users country and language in a cookie when users connect to my site. But when the cookie is saved i redirect/refresh the page so the user get the correct language. But when a user has ...
2
votes
1answer
545 views
Setcookie won't work?
I set the cookies regularly in a callback page in my Twitter application. Everything works fine.
Now, using jQuery, I submit a form, and the callback function activates a PHP script. That script only ...
2
votes
5answers
2k views
php SetCookie works in Firefox, but not IE
I have two php scripts
test.php
<?php
header("location: test2.php");
setcookie("test", "8kFL4IZfjkBmV7AC", time()+60*60, '/');
exit;
?>
test2.php
<?php
var_dump($_COOKIE);
?>
I ...
2
votes
3answers
189 views
How to set cookies via PHP in the middle of a document?
how can I set cookies in the middle of a document, without incurring a 'headers already sent' error? What I'm trying to do is make a log out script (the log in cookie setting works...so odd. Is it ...
2
votes
1answer
67 views
I don't want a specific path for my cookie using javascript
I am setting a cookie, but I don't want it to just work for one directory. How do I make it to where it's read throughout my whole site? I'm pretty new at JavaScript, thanks guys!
<script>
...
2
votes
3answers
502 views
PHP + ie6 + cookies: failing a hello world world for cookies
I tried, to no avail! My problem is php's setcookie() fails in IE6. It's fully functioning (albeit buggy) for Firefox 3 and IE7/8. The following is the code. IE6 displays fail. Simple question: why?
...
1
vote
0answers
33 views
SetCookie simply not working
I cannot get a cookie to set properly through WordPress theme. I am putting the following code on the bottom of my functions.php page for my theme.
function set_cookie() {
if (isset($_GET['id'])) {
...
1
vote
1answer
19 views
setcookie usage for multiple localhost subdomains
I have been working on a web application on my localhost (xampp) where I have two subdomains set up. Lets call these domains abc.localhost and xyz.localhost.
I have both of these set up in my host ...
1
vote
1answer
38 views
Setting cookies in an AJAX call with Django
I have a Django site and I am trying to set a cookie in a response from an AJAX call. I made the question more general since nowbody was answering Cookies not working with an AJAX call from jQuery to ...
1
vote
0answers
82 views
.htaccess allow download on cookies is set
How to set .htaccess to detect a Cookie and allow to download files from Site directories?
I use a command RewriteCond %{HTTP_COOKIE} !^.*pswdcookie.*$ [NC] to detect that cookies.
The "pswdcookies" ...
1
vote
5answers
150 views
unsetting cookie getting Undefined index
test.php
<?php
setcookie('username', 'mary', time()+1000);
setcookie('username', 'mary', time()-1000);
?>
view.php
<?php
echo $_COOKIE['username'];
?>
Error I am getting after ...
1
vote
2answers
114 views
Curl how to use cookies
Hey i am trying to use cookies in curl, but I can not get it to work so basically what I need is to when loading the url set cookie with ab = 1 ab2 = 3 and ab3 = 10, I tried loading cookies but that ...
1
vote
4answers
431 views
C# get or set cookies, to download content from the web using cookies
I need help with cookies. I'm planing use cookies to download web content. To get the content I need to log into a website because only authorized users can download web content or files. I'm using
...
1
vote
1answer
61 views
setcookie() has header problem — no whitespace, text, or anything before the <?php tag
The following code has no whitespace or text before the opening php tag. When applied, I get a warning that says that the header has already been called "on line 3" (setcookie). I'm at a loss for why. ...
1
vote
1answer
101 views
setting cookie from subdomain that includes main domain for google analytics
Main site - www.example.com
App site - app.example.com
The cookie is created on app.example.com, but should also work for www.example.com.
setcookie("gacookie", time(), time()+31536000, '/');
Is ...
1
vote
3answers
89 views
Deleting Cookies In Other Subdomains
I was wondering if it's possible to delete a cookie in PHP, meaning re-setting it's time to a time in the past, for a specific subdomain from another subdomain.
For example:
say I am executing the ...
1
vote
2answers
120 views
Cookie gets deleted on restarting browser
The cookie which i set in codeigniter gets deleted after i restart the browser. I'm setting up a cookie like:
$test_cookie = array(
'name'=>'test',
...
1
vote
4answers
520 views
how to retrieve cookie value in CodeIgniter?
I can print the session values in codeigniter by print_r($this->session->userdata);
How can i print the cookies in codeigniter? I have just set a cookie:
$cookie = array(
'name' ...
1
vote
1answer
51 views
How to get expiration time from setcookie()?
I have a cookie, which is working with ssl only:
$data = $users->customer->getUsernames();
$data = join(",", $data);
setcookie('test_cookie', $data, time()+3600, '/root/en/server/',
...
1
vote
1answer
364 views
Problem in Multiple Set-Cookies in httpwebrequest Header
I try to login amazon.com using C# HTTPWebRequest class, i can login but not able to read multiple set-cookies in header
When the server responds with multiple "Set-Cookie:"-headers, only the first ...
1
vote
2answers
2k views
setcookie() does not set cookie in Google Chrome
I am going through some PHP tutorials on how to set cookies. I have noticed that cookies are successfully set on FF4 and IE9, however it does not get set in Chrome (11.0.696.60). The PHP file was ...
1
vote
4answers
83 views
setcookie doesnt work
What's wrong with this ?
setcookie("password",$wachtwoord,0, "/", ".thedomainname.com");
echo $_COOKIE['password']; //shows nothing
1
vote
1answer
169 views
How to set Cookie's domain withOUT the period?
I am aware of cross domain issue and I don't want my cookie to be used by any subdomains.
In PHP, I know that I can do this: setcookie('mycookie', '12345'); and leave the domain empty or set ...
1
vote
4answers
202 views
PHP setcookie warning
I have a problem with 'setcookie' in PHP and I can't solve it.
so I receive this error "Warning: Cannot modify header information - headers already sent by (output started at C:\Program ...
1
vote
1answer
393 views
Domain set cookie for subdomain
I looked in many questions about cookies but I didn’t find an answer on my problem. I have following scenario:
A user makes a login on example.com and should get a cookie but only for the subdomain ...
1
vote
1answer
206 views
Error with simple session/cookie “Cannot modify header information”
I tried transferring a working login system from one domain to another. It works perfectly on domain A, but starts giving errors:
Warning: Cannot modify header
information - headers already sent ...
1
vote
1answer
260 views
Is there a class in Android for formatting Cookies into the value for a CookieManager?
When my app starts up, I post a login request to a web service and receive a Cookie. I want to use that Cookie in my WebView, which I do with the following code:
List<Cookie> cookies = ...
1
vote
3answers
191 views
jquery and cookie status
What i'm trying to do is have a sidebar toggle open and close which is working fine but I also want cookie to remember the sidebar state when browsing site and when returning to page its on
ie: if ...
1
vote
0answers
119 views
Java, let CookieHandler work on only one instance
I don't know how CookieHandler works system wide, I did view the source of CookieHandler but found no more information except the get/set methods. Where do TCP/HTTP connections use instance of ...