An HTTP cookie is a piece of data stored by the user's web browser. Unless otherwise specified, cookies can be created, read, modified and deleted both by JavaScript and from server-side through HTTP headers.

learn more… | top users | synonyms (1)

243
votes
5answers
192k views

How do I expire a PHP session after 30 minutes?

I need to keep a session alive for 30 minutes and then destroy it.
163
votes
5answers
120k views

How to set/unset cookie with jQuery?

How to set a cookie named 'test' and value '1'? And especially, how to unset?
187
votes
16answers
87k views

Cookie blocked/not saved in IFRAME in Internet Explorer

I have two websites, let's say they're example.com and anotherexample.net. On anotherexample.net/page.html, I have an IFRAME SRC="http://example.com/someform.asp". That IFRAME displays a form for the ...
57
votes
4answers
30k views

Using CookieContainer with WebClient class

I've previously used a CookieContainer with HttpWebRequest and HttpWebResponse sessions, but now, I want to use it with a WebClient. As far as I understand, there is no built-in method like there is ...
98
votes
5answers
26k views

What is the best way to implement “remember me” for a website? [closed]

I want my website to have a checkbox that users can click so that they will not have to log in each time they visit my website. What is the best way to implement this? I know I will need to store a ...
62
votes
2answers
42k views

How to use Python to login to a webpage and retrieve cookies for later usage?

I want to download and parse webpage using python, but to access it I need a couple of cookies set. Therefore I need to login over https to the webpage first. The login moment involves sending two ...
19
votes
6answers
5k views

Can some hacker steal the cookie from a user and login with that name on a web site?

Reading this question different users get the same cookie value in aspxanonymous and search for a solution, I start thinking, if it is possible for some one to really steal the cookie with some way, ...
15
votes
4answers
16k views

Allow php sessions to carry over to subdomains

I use php sessions (not cookies, except for session id cookie) for all user data, and when a user goes to their profile user.mydomain.com they are immediately "logged out" untill then remove the ...
26
votes
7answers
19k views

What is the best way to prevent session hijacking?

Specifically this is regarding when using a client session cookie to identify a session on the server. Is the best answer to use SSL/HTTPS encryption for the entire web site, and you have the best ...
12
votes
4answers
16k views

Cross domain cookies

I have a small problem, how do I set a cookie for multiple domains? I do understand the security problems, and I am sure it has been done before. The reason for this is SSO. ie. account.domain.com ...
74
votes
2answers
58k views

How do I make an http request using cookies on Android?

I'd like to make an http request to a remote server while properly handling cookies (eg. storing cookies sent by the server, and sending those cookies when I make subsequent requests). It'd be nice ...
44
votes
6answers
11k views

Asp.Net Forms Authentication when using iPhone UIWebView

I am writing a Asp.net MVC 2 application that uses Forms Authentication and currently I am having a problem with our iPhone application in regards to the authentication/login over the web. We have ...
40
votes
12answers
34k views

How to detect if cookies are disabled? Is it possible?

How to detect on server side that cookies in browser are disabled? Is it possible? Detailed explanation of question: I am processing HTTP request on the server. I want to set cookie via Set-Cookie ...
62
votes
6answers
19k views

Allowed characters in cookies

this one's a quickie: What are the allowed characters in both cookie name and value? Are they same as URL or some common subset? Reason I'm asking is that I've recently hit some strange behavior ...
60
votes
5answers
25k views

Firefox session cookies

Generally speaking, when given a cookie that has no expiration period, modern browsers will consider this cookie to be a 'session cookie', they will remove the cookie at the end of the browsing ...
43
votes
5answers
49k views

Clearing all cookies with JavaScript

How do you delete all the cookies for the current domain using JavaScript?
6
votes
3answers
3k views

What is the “best” way to get and set a single cookie value using JavaScript

I want to increment a cookie value every time a page is referenced even if the page is loaded from cache. What is the "best" or most concise way to implement this?
29
votes
8answers
17k views

What's your favorite cross domain cookie sharing approach?

I see iframe/p3p trick is the most popular one around, but I personally don't like it because javascript + hidden fields + frame really make it look like a hack job. I've also come across a ...
19
votes
2answers
17k views

Javascript getCookie functions

I found two functions to get cookie data with Javascript, one on w3schools.com and one on quirksmode.org I would like to know which one I should use? For example I believe I read somewhere that there ...
25
votes
6answers
45k views

Android WebView Cookie Problem

I have a server that sends my android app a session cookie to be used for authenticated communication. I am trying to load a WebView with a URL pointing to that same server and I'm trying to pass ...
37
votes
4answers
20k 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 ...
86
votes
2answers
16k views

Local Storage vs Cookies [closed]

I want to reduce load times on my websites by moving all cookies into local storage since they seem to have the same functionality. Is there any pros/cons (especially performance-wise) in using local ...
73
votes
7answers
82k views

Can jQuery read/write cookies to a browser?

Simple example: I want to have some items on a page (like divs or table rows), and I want to let the user click on them to select them. That seems easy enough in jQuery. To save which items a user ...
18
votes
5answers
22k views

PHP: Cookie domain / subdomain control

I'm working on a site with multiple subdomains, some of which should get their own session. I think I've got it worked out, but have noticed something about cookie handling that I don't understand. ...
51
votes
2answers
26k views

Where are an UIWebView's cookies stored?

I'm building an iPhone app with cookies. Deleting cookies in the Safari settings doesn't delete them. Where are they stored? Is it possible to read them from another UIWebView? Thanks!
16
votes
2answers
30k views

How do I manage cookies with HttpClient in Android and/or Java?

I am trying to login to a site and maintain that session/cookie so that the server will recognize my login, but I am struggling to figure out a way of extracting the cookie from the response and ...
38
votes
5answers
31k views

how to get the cookies from a php curl into a variable

So some guy at some other company thought it would be awesome if instead of using soap or xml-rpc or rest or any other reasonable communication protocol he just embedded all of his response as cookies ...
10
votes
8answers
23k views

C#, Webbrowser control: How to delete Cookies from windows.form?

I am working with the Webbrowser control on a windows.form application written in C#. I would like to write a method for deleting the cookies from the Webbrowers control after it visits a certain ...
0
votes
2answers
406 views

How to set cookies for uuid

I have a website which generates a uuid every time the page is loaded/refreshed. I want to make it so that a certain value remains the same for a period of time using cookies. Does anyone know of a ...
28
votes
2answers
26k views

Why is jquery's .ajax() method not sending my session cookie?

After logging in via $.ajax() to a site, I am trying to send a second $.ajax() request to that site - but when I check the headers sent using FireBug, there is no session cookie being included in the ...
26
votes
3answers
10k views

Internet Explorer ignores cookies on some domains (cannot read or set cookies)

I have a site, e.g. example.com, where users can set their own subdomains (one user - one subdomain) and upload their own scripts, e.g. http://somedomain.example.com/xyzzy.php would map to ...
8
votes
8answers
24k views

how to store an array in jquery cookie?

I need to store an array in a jQuery cookie, any one help me please?
21
votes
6answers
65k views

javascript - delete cookie

Is my function of creating cookie correct? and how do i delete cookie at the beginning of my program run? is there a simple coding? function createCookie(name,value,days) <script> function ...
53
votes
3answers
25k views

Rails Sessions current practices (especially for rails 3)

Anyone have any "best practices" tips for Rails and sessions? The default session type for Rails3 is still cookie store, right? I used SqlSessionStore for a while and it worked well, but I may move ...
10
votes
1answer
6k views

Login to Google with PHP and Curl, Cookie turned off?

I have this code for logging into Google using Simple DOM Parser with curl. I've tried adding in the cookiejar file, but to no avail. I keep getting the message: Your browser's cookie functionality ...
48
votes
6answers
19k views

Why does Chrome ignore local jQuery cookies?

I am using the jQuery Cookie plugin (download and demo and source code with comments) to set and read a cookie. I'm developing the page on my local machine. The following code will successfully set a ...
20
votes
5answers
16k views

PHP session without cookies

Is there a way that I can initiate a persistent session in PHP without the placement of a session cookie? Are there other ways of maintaining a session across pages, such as an IP address-based ...
16
votes
2answers
16k views

Safari doesn't set Cookie but IE / FF does

I found a strange cookie problem on safari. If you surf to http://2much.ch you can enter with FF/IE and surf inside the site. But if you use safari, you can enter only once; you can't surf inside the ...
39
votes
2answers
22k views

Rails cookies, set start date and expire date

Rails cookies, i need to set start date and expire date using cookie, for eg., once the added item reaches third day, the item should expire.
19
votes
13answers
29k views

Setting cross-domain cookies in Safari

Evernote's bookmarklet is able to do this, therefore the most upvoted answer does not answer this even though the bounty will go to it (in a non-productive manner). I have to call domain A.com (which ...
17
votes
3answers
4k views

question on GWT, Cookies and webpage directing

i am using gwt to create a website. this question is regarding a login page and cookies to save login details. GWT allows you to create a website within a single webpage. my application runs on one ...
60
votes
4answers
38k views

What is the maximum size of a web browser's cookie's key?

I'm wondering what the maximum size of a web browser's cookie's key is. I know the maximum size of a cookie is 4KB, but does the key have a limitation as well?
40
votes
5answers
42k views

How do you remove a Cookie in a Java Servlet

How do you remove a cookie in a Java servlet? I tried this: http://www.jguru.com/faq/view.jsp?EID=42225 EDIT: The following now works successfully it appears to be the combination of: ...
20
votes
4answers
48k views

How can I delete all cookies with JavaScript?

I have written code to save the cookies in JavaScript. Now I need to clear the cookie irrespective of values that I assigned. Are there any script modules to delete all cookies that were generated by ...
15
votes
5answers
17k views

How to get cookie's expire time

When I create a cookie, how to get cookie's expire time? Thanks a lot.
6
votes
3answers
2k views

Accessing $_COOKIE immediately after setcookie()

I'm trying to access a cookie's value (using $_COOKIE) immediately after calling the setcookie() function in PHP. When I do so, $_COOKIE['uname'] isn't set. Why? Note, however, that ...
0
votes
2answers
450 views

Save my cookie data to MySQL database?

I was doing a survey I was offline server so I save users information in cookies, I have users Information like this Fname:Ali,Lname:Kheiri,title:Director,org:Magiclamp,email:alikheiri@gmail.com ...
16
votes
1answer
11k views

How does Facebook set cross-domain cookies for iFrames on canvas pages?

I was browsing Facebook's documentation reading about canvas applications and I came across an example application: http://developers.facebook.com/docs/samples/canvas. As I read through their example, ...
16
votes
1answer
6k views

PHP Loginsystem: Remember Me

so I have my loginsystem for now. Now im coming to where i'd like to have a remember me that you can "check", before you log in. Now i know how to do this checkbox, but how store cookie to the user ...
12
votes
6answers
19k views

How do I use cookies across two different domains?

I need to share SSO information between two different domains with a cookie, can this be done in PHP and how?

1 2 3 4 5 24