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.
-2
votes
0answers
24 views
Jquery counter that remembers visitors IP address and doesn't appear every time
I need some help with this. It is a counter with one-time offer on my website, that should appear only the first time someone visits the site. Also, it should not reset on refresh.
This is HTML code:
...
0
votes
1answer
19 views
How to write a cookie to remember a username in JavaScript
I am working on a login page for a project and I am wondering how I would go about setting a cookie just to remember the username ?
1
vote
1answer
27 views
Error at checking if cookie is set
I am using this in my controller to check if the cookie was already set, if not i set it.
function x(){
if(!isset($_COOKIE['sg'])){
$this->load->model('generate_model');
...
-3
votes
1answer
24 views
Browser Cookie Persistent
My question is very simple, it may be asked before but the answers are not useful for me so i am asking it again.
How can i persist my cookie stored at browser , after is cleared manually ?
Scenario
...
0
votes
0answers
16 views
Why cookie returned by web server is none?
In my Android app, I'd like to fetch cookie for user login.
HttpResponse response=client.execute(post);
HttpEntity entity=response.getEntity();
.....
CookieStore mCookieStore = ...
1
vote
0answers
40 views
Save Draggable Div Position
i had added a drag and move div to my website, i am using common header for each pages.
my drag and move div code as follows:
Script:
<script type="text/javascript">
$(function() {
...
1
vote
1answer
12 views
Google Chrome plug in to read saved cookies
I'm new to Google Chrome plug in development. I have learnt how to develop a basic plug in. Now the problem is I'm trying to make a plug in that can read saved cookies of a particular website you ...
1
vote
0answers
24 views
ASP.NET Cookies BUG - multiple cookies duplicated randomly?
It seems that there is annoying bug in ASP.NET cookie handling during writing of response-stream to the wire. Set-Cookie headers are multiplied randomly.
My example setup is: ASP.NET MVC4 on IIS8 ...
0
votes
1answer
14 views
Express cookieParser() confused
Here's the problem, searched everywhere and never found a clear answer. In order for this:
app.use(express.cookieParser('Secret')); <-- "Secret" to actually be secret
What do we actually do? I'm ...
0
votes
1answer
16 views
Receive info regarding the amount of cookies created by other domain
User visit my site and type into input address of his site.
JQuery send AJAX request to my PHP script and now:
how this PHP script can check the amount of cookies which this domain creates (domain ...
0
votes
1answer
16 views
Google Chrome maximum cookie expiry date
I was creating my website when I created a new cookie with this php line :
setcookie('subscribed', 'true', time() + 365*24*3600*100, '/', null, false, true);
I realised my browser (Google Chrome) ...
-5
votes
2answers
46 views
PHP - cookies and header location: Cannot modify header information - headers already sent by [duplicate]
This is my user log in page. After the user enter log in details, I want to store cookie files and direct the user to home page. However, I keep getting this error I have tried every possible way to ...
1
vote
1answer
23 views
why not using Request.Cookies.Clear() in ASP.NET web forms?
I searched here on the stackoverflow about removing all cookies from site, but couldn't find a single answer suggesting the use of Request.Cookies.Clear() method.
What's the difference between:
if ...
0
votes
0answers
19 views
Reading encrypted cookie
I have used this example as a base, to read and write an encrypted cookie. Problem is that the decrypted string that gets returned contains invalid characters. i.e. the cookie value is
'MyValue'
...
0
votes
0answers
34 views
remember me option in phonegap for iphone
I have to implement remember me functionality for an iphone app. I am using Java at the server side and Jquery mobile at the client side. As of now, I am returning the cookie to the client side from ...
0
votes
1answer
21 views
Delete Existing Cookie Set By Iframe
If a cookie is being set by an iframe, then how I would be able to delete that cookie using javascript?
I know that putting an expired date would delete the cookie. This method might be useful only ...
0
votes
1answer
15 views
Mongoid has_many relationship causes Rack cookie error in Sinatra
Writing an application using Mongoid 3.1 and Sinatra in Ruby 1.9.3. I have a model called Order that has_many Items. Whenever I try to append an Item to an Order.items, I run into problems. I have the ...
0
votes
1answer
11 views
Remembering Sessions - phpBB
Im currently coding a basic login using HttpWebRequests in Visual Basic 2010. After following some tutorials, I somehow racked this code up:
http://pastebin.com/azZuyvDM
Pretty much I have phpBB ...
2
votes
0answers
22 views
Cookies null on some pages but not others
I am working on a site that has some shared code across all pages for navigation. In the shared code, I am reading a cookie that determines which navigation to display. (Different customers get a ...
0
votes
1answer
28 views
Special character in cookies in IE
I'm saving an Array Json in cookies from server with something like this:
HttpCookie myCookie = Request.Cookies["ProcessArray"];
myCookie.Value = JSONC.Serialize(lstProcess);
and in Chrome ...
0
votes
1answer
16 views
How to use MachineKey.Protect for a cookie?
UPDATE - Thanks to the comment from @SLaks I realized that I was doing things in the wrong order.
I am pasting the working solution here for other people having a similar problem.
public static ...
0
votes
0answers
19 views
Trying to follow tutorial simple modal and jquery cookies, doesnt work
I am trying to do newsletter subscription pop up using this tutorial
http://www.phpbuilder.com/columns/jquery-newsletter-subscription-popup/Jason_Gilmore01192011.php3?page=2
I set up simplemodal ...
1
vote
1answer
24 views
Load CSS classes (with transitions) from cookies without transitioning into them
Here goes my first post on stackoverflow!
I have created css to transition between two different background colors.
.body {
font-family: Tahoma, Geneva, sans-serif;
font-size: 20px;
...
1
vote
1answer
24 views
Does setting of HTTP cookie in ASP.NET Takes time?
I am facing a strange problem. I am setting a cookie in one page (Response.setcookie), then doing Response.Redirect to another page and there I am accessing cookie (from Request of that page).
Now ...
0
votes
1answer
15 views
I need to know if session access to session cookie to read the id each time
I' need to store some not sensible state data eg. language and layout preferences.
I need to know if session is faster then cookie.
Does the session read the session id cookie each time in order to ...
0
votes
1answer
18 views
HttpPost request with cookies
I need to make two requests to the server. In the first request I send parameter userID = 1 and the server returns a cookie _session_ID. Now I send a second request with no parameters and the result ...
1
vote
0answers
27 views
ZF2 user remember me not working
I am trying to implement rememberme functionality for my ZF2 v2.2 site.
So here is what i have done so far :
I created a service for session manager to write the session to db :
'session' => ...
0
votes
0answers
11 views
Apache get particular cookie value from response in httpd.conf
I want to log a cookie value from response in Apache. How can i do that. The closest option is
Logformat "%{Set-Cookie}o"
which logs all cookies in response. How can i extract a particular cookie ...
0
votes
0answers
17 views
How to make Java handle Cookies && make site think Java can handle Cookies?
I am having trouble making my Java program talk to a website because the website performs this test with it's javascript
if (navigator.cookieEnabled == 0) {
alert("You need to enable cookies for ...
1
vote
1answer
12 views
Set multiple cookies in Apache
I'm trying to set two cookies in Apache (2.2), using mod_header, like so:
Header set Set-Cookie "poodle=noodle;path=/;Secure;HttpOnly;Expires=Wed, Jan 01 2020 2:02:02 GMT"
Header set Set-Cookie ...
1
vote
1answer
27 views
how to login to a website with python and mechanize
i'm trying to log in to the website http://www.magickartenmarkt.de and do some analyzing in the member-area (https://www.magickartenmarkt.de/?mainPage=showWants). I saw other examples for this, but i ...
1
vote
1answer
14 views
In Rails 3, how can I save user search history to the database with no membership/authentication system?
Currently, the site is storing "previously viewed items" via cookies.
I need to take that a step further and not only store those items in the database, but save the user's most recent search, so ...
0
votes
0answers
28 views
How to setcookie on wordpress site?
I have problem with seting and reading cookie on wordpress site.
Here is what I'm doing:
1.Sending over js id to php
ajax.js
jQuery.post("/wp-content/themes/mytheme/ajax.php", {post_id: post_id}, ...
0
votes
1answer
41 views
how to remember checked checkboxes in a dynamically generated table with PHP
I have a PHP file that creates dynamically a html table. The first column has checkboxes, is there any way that I can save the selected checkboxes, so when the user come to the page again in other ...
0
votes
2answers
10 views
UserData property of FormsAuthenticationTicket is empty despite being set
For some reason, I the UserData property of my authentication cookie is empty. Here is the code:
var authCookie = FormsAuthentication.GetAuthCookie(userName, rememberUser.Checked);
// Get the ...
0
votes
0answers
27 views
firefox 22 third party cookie in iframe session
This seems to be a much discussed topic the last time. Unfortunately I haven´t found something satisfying.
I have to Servers with different domains. Server A loads an application from Server B into ...
0
votes
1answer
15 views
ASP.NET MVC - Best way to retain search criteria across all pages
I am writing a real-estate related ASP.NET MVC application. I would like to auto populate the the user's (detected) location (city, state) when the site loads and allow them to search for using a ...
1
vote
2answers
22 views
How to prevents users change asp.net sessionid cookie
How can i be sure that a session is valid?
What happen if an user change his aspnet sessionid cookie and guess the id of another logged user?
1
vote
1answer
31 views
Ruby HTTP post with session cookie
I'm trying to write a Ruby script to use the API on the image gallery site Piwigo, this requires you to login first with one HTTP post and upload an image with another post.
This is what I've got so ...
0
votes
2answers
72 views
is it secure to save password in cookie or its better to save it in database
i currently save my password in database and check it with session cookie but it make authenthication of user so slow and since i have many users i bought a ssl certificate for my website and i need ...
1
vote
1answer
51 views
Cookie not being read by html form
I am working on a website where people can search based on their postalcode.
When the visit the page for the first time a popup dialog opens. You have to fill in your Postalcode and a radisu of x km.
...
0
votes
1answer
11 views
How to do last five pages visited usercontrol in asp.net?
Dim i As Integer = 0
Dim productcount As Integer = 0
If HttpContext.Current.Request.Cookies("xxx") Is Nothing Then
Dim gingernuts As New HttpCookie("xxx")
...
0
votes
0answers
23 views
How to send Cookie with HttpGet Url?
I'm trying to send Cookie with HttpGet Url. which Cookie Receive from my service(call by HttpGet), for Authentication I send it with Url but every time get error message "User must be ...
1
vote
1answer
16 views
Browser-upgrade-page redirect vs. privacy mode
We are doing feature detection on a site I'm building, but the client insists users with older browsers be shown an upgrade page ("sorry, your browser is outdated, please visit XYZ site to download a ...
0
votes
1answer
47 views
ASP.NET_SessionID Missing on Production only
I have written an ASP.net webservice using C#. Everything works just fine with the service itself and deployment to stage and production. However after running an Acunetix scan there is an issue ...
-1
votes
2answers
27 views
Delete all cookies from domain in chrome extension [closed]
How can I delete all cookies from a selected domain with a Google Chrome extension?
0
votes
0answers
12 views
Getting Passwords thru Cookies (Or some other way)
We have a Cisco Jabber Client - but without the persistent muc room functionality. It is configurable though, and we were able to embed our HTML Jabber their IE rendering engine so users can now go to ...
0
votes
0answers
12 views
prestashop - logout does not work fine
I log in, then log out, when I try to connect again it redirects to profile page where I can update my profile. This problem happens only online, I don't have any problem with the offline version of ...
0
votes
1answer
47 views
Set cookies using javascript / jquery
I have worked on a little script which can be used to set cookies if you know the location. For example, this code below:
$(window).load(function () {
$('body').append('<iframe ...
0
votes
0answers
22 views
Issue with cookies during webpage parsing using Python
I am trying to parse a webpage using Python.
Problem: This page requires me to enter zipcode in the prompt window before loading. If I don't enter zipcode (parse the webpage directly) then webpage ...







