Tagged Questions
2
votes
0answers
43 views
with servicestack how can i prevent cookies being added to the response?
I can remove the cookies after the fact, with this:
public override void Configure(Funq.Container container)
{
ResponseFilters.Add((req, res, dto) =>
{
...
1
vote
1answer
48 views
Call a URL before a redirect, via PHP head()?
I need to have 3 domains:
a.com - where our script (below) will reside.
b.com - has a tracking script we want to fire
c.com - is our final destination, like a landing page
So, an advertising ad ...
0
votes
2answers
45 views
Headers already sent on remote server, not in local [duplicate]
I've realised a "remember me function" using $_COOKIE and on my LAMP machine where I develop it works fine.
But then I've uploaded the code to the remote server and it gives me this error
Warning: ...
0
votes
0answers
55 views
Passing cookies via Ruby script
I am parsing Google Trends with Ruby libraries. The page is the following:
Google Trends page for "New Year"
This is the part of code, which gets the content of the page:
require 'net/http'
require ...
0
votes
2answers
159 views
Extract cookies info from response headers C#
I have some information that is available in a response header. One way would be to come up with a regex for it...Is there another way to work around this?
This is the header info:
Headers = ...
0
votes
1answer
53 views
Getting Cookie value from MessageContext.HTTP_RESPONSE_HEADERS
How can I get hold of a value of a particular cookie from list of cookies. Below is how I am trying:
Map<String, List<String>> map = (Map<String,
...
14
votes
1answer
860 views
Setting a cookie using JavaFX's WebEngine/WebView
I cannot seem to find any way to set a cookie programatically using WebEngine / WebView in JavaFX. The API doesn't give any idea as to how to obtain an HttpRequest-like object to modify the headers ...
0
votes
0answers
26 views
Adding parameters in http header and cookies using filter
I am trying to add parameters in http header and cookies for x-xss support. I am completely new to it.
Can any one help me to get started.
Thanks in Advance.
0
votes
1answer
161 views
FB API Cookie Header Error
I have the following code:
require '../lib/facebook-php-sdk/src/facebook.php';
$facebook = new Facebook(array(
'appId' => '143944345745133',
'secret' => 'xxxxxxxx',
'cookie' => true,
));
...
0
votes
1answer
79 views
Does the SPDY protocol eliminate the need for cookieless domains?
With plain HTTP, cookieless domains are an optimization to avoid unnecessarily sending cookie headers for page resources.
However, the SPDY protocol compresses HTTP headers and in some cases ...
1
vote
1answer
134 views
abcpdf HttpAdditionalHeaders cookies
Hi I'm trying to add cookies to the http headers when generating a pdf file with abcpdf. What I have done so far is based on the documentation:
...
-1
votes
1answer
139 views
How to use browser cookies programmatically [closed]
I have a crawler that automates the login and crawling for a website, but since the login was changed it is not working anymore.
I am wondering, can I feed the browser cookie (aka, I manually ...
1
vote
0answers
253 views
Java GAE UrlFetch; Ignore/Disable cookies when sending HTTP request
I am writing a Java GAE app that uses URL Fetch (via the HttpURLConnection class) in order to send HTTP requests to and receive HTTP responses from other web sites. One such site is the iTunes ...
2
votes
0answers
113 views
Injecting cookies using PHP not yielding the same cookie
I'm trying to make a PHP script that sets cookies to the browser by reading them from a file first. In the file is the piece of HTTP header "Cookie: x=foo; y=bar; etc". The script does a cleanup of ...
0
votes
2answers
169 views
Cookies overload creating bad request, impossible to delete with php or js
Website is regularly giving HTTP400 Bad Request errors, it's caused by 2 cookies being too big.
I use livestream.com to play live video (using Flash) and seems like they use Akamai Analytics that is ...
0
votes
1answer
519 views
In Varnish, how can I read the Set-Cookie response header?
I am trying to detect if my application has set a cookie that holds an "alert message" for the user on the next page, where the Javascript displays it if detected.
In my vcl_fetch(), I need to detect ...
0
votes
0answers
135 views
Cookies won't set, session works
I'm sorry for the small amount of information, but there is not much else I can give you. The problem is, when trying to extend my login function to add an option for staying logged in, the cookies ...
0
votes
1answer
57 views
cookies - the misunderstanding
My goal is that I want to log into a site with some java code and do some work when logged in. (in order to write some java cooking handling I first need to understand how this all actually works)
The ...
0
votes
0answers
38 views
Storing a huge amount of data as a cookie
I'm trying to store a huge amount of data on a user's machine (this is the safest way to do this) that is transferred from my server. The data is about 4K - I've tried storing it as a cookie but I get ...
0
votes
0answers
55 views
cookie overwrite didn't work in chrome
This is what I found at http://www.w3.org/Protocols/rfc2109/rfc2109:
If a user agent receives a Set-Cookie response header whose NAME is
the same as a pre-existing cookie, and whose Domain and ...
0
votes
0answers
74 views
Remove cookies best practice
Today many of the application servers has got a limit of 4K-16K on http headers section.
In many of the cases you can exceed this limit due to large cookies.
In some cases you do not have control on ...
1
vote
1answer
87 views
Can the user agent be used to tie a cookie to hardware?
I help maintain a site that is sold to about 100 clients. We take security pretty seriously and we have a multiple step login process. One part of the process can be skipped if you have already logged ...
0
votes
0answers
1k views
swfupload 302 error
so I have this javascript code for loading swfuploader onto a page ( http://code.google.com/p/swfupload/)
swfuPubThumbnailUploader = new SWFUpload({
upload_url : "/upload_thumbnail",
flash_url : ...
1
vote
2answers
513 views
Duplicated “set-cookie: ci-session” fields in header by codeigniter
For each time $this->session->set_userdata() or $this->session->set_flashdata() is used in my controller, another identical "Set-Cookie: ci_session=..." is added to the http header the server sends.
...
0
votes
1answer
2k views
Analyzing HTTP headers in Firebug
I was just trying to analyse all the HTTP header fields in Firefox plugin - Firebug. First I logged out from Stack Overflow and then cleared all the cookies from my browser.
Then I went to the ...
2
votes
1answer
196 views
Is it possible to read headers using Perl HTTP::Async module?
To optimize my Perl application I need to work with async HTTP requests, so I can handle other operations once the HTTP response is finish. So I believe my only option is to work with HTTP::Async ...
0
votes
2answers
454 views
Store a Cookie if Server Referrer is a specific website - PHP
I would like to redirect a user to an 'Alert Page' if they come to my new site from my old site. Only on one occasion, however. Every other time after that they would carry on to my new site ...
0
votes
1answer
255 views
May I turn off PHPSESSID and why it appear on my cookie?
When I check apache_request_headers() I found PHPSESSID.
$headers = apache_request_headers();
foreach ($headers as $header => $value) {
echo "$header: $value <br />\n";
}
results ...
1
vote
1answer
422 views
Django saving HTTP_REFERER to use it as landingpage information
I would like to know if there is a better solution for this.
The website I'm building has some forms which need information about the page the user started his 'journy'. Right now I'm saving ...
18
votes
2answers
1k views
Setcookie syntax Google Chrome
I am using following syntax to set cookie:
Set-Cookie:Cookie-name=value; path=/; Max-Age=1296000; HttpOnly
In google chrome console it is showing
Invalid Date for that cookie.
What is wrong in ...
0
votes
1answer
675 views
Setting cookie for a URL Request in Flash? (Argument Error 2096)
Is there any possible way to set the cookie header for a URLRequest in Flash? What I have now is:
r.requestHeaders.push(new URLRequestHeader("cookie", "a=1");
And that gives me this lovely error:
...
2
votes
1answer
2k views
How to access all HTTP Response Headers
I have a simple mobile app in Titanium that I'm using to debug the ability to log into our user system.
At the moment, I cannot seem to see the Set-Cookie response header as it's always returned as ...
0
votes
1answer
73 views
cookie path maybe? cookie not being set
im having problems setting this cookie,
maybe it might be a path error im not sure just started playing with cookies yesterday
php code:
setcookie(md5('View-live-ad'),$_GET[md5('ad')],3600,'/');
...
1
vote
1answer
711 views
How to diagnose error : Unable to add cookies, header already sent
Error : Unable to add cookies, header already sent.
I would like to know if there is any way I can diagnose above error efficiently.
I understand the cause of this error - when cookies are being ...
2
votes
2answers
1k views
PHP cURL: HTTP headers show 302 and cookies set, cookies are saved and sent, same headers appear?
This is kind of a carry on from a question asked yesterday: Can't seem to get a web page's contents via cURL - user agent and HTTP headers both set?
I'm attempting to access a url's contents, ...
1
vote
0answers
272 views
http headers being already sent - elmah logging the error (MVC3 app)
When I log into the staging environment on our site I see elmah log this error:-
System.Web.HttpException (0x80004005): Server cannot modify cookies after HTTP headers have been sent.
In the mvc 3 ...
3
votes
1answer
490 views
Is it safe to use “Access-Control-Allow-Origin: *” setting on the server and use session based cookies at the same time?
I want to allow client applications to make cross domain JSON requests to a central data server. The clients and server will be on different domains.
To get around the "Origin null is not allowed by ...
-8
votes
1answer
452 views
How to handle secure cookies with web crawler [closed]
I have some tasks on a site in php using nginx that I'm trying to automate. I am able to log in but subsequent requests to the rest of the site fail because of a bunch of cookies I'm not able to ...
1
vote
1answer
1k views
Attaching a cookie to a view in Symfony2
I've found a few questions and pages dealing with cookies in Symfony2 but there doesn't seem to be any clear consensus on exactly how this is supposed to work. I can, of course, just fall back to ...
0
votes
0answers
61 views
Retrieve a cookie set in Python serverside
G'day,
I'm following a guide found here: http://www.doughellmann.com/PyMOTW/Cookie/
which has the code:
c = Cookie.SimpleCookie()
c.load(HTTP_COOKIE)
to retrieve a cookie previously set (by the ...
0
votes
2answers
501 views
PHP Curl Mozilla LiveHttpHeaders analysis needed
I was trying to login to a site using the PHP Curl library. Even though i have ben successfully logged in, i cant seem to access any other pages beyond the login page. Now i know there could be some ...
0
votes
1answer
667 views
socket.io upgrade from 0.6 to 0.7 causes problems in socket.request
I had an application that uses node.js and socket.io. It was working fine three months ago but when I tried to run it now it showed me that the module socket.io is not defined (don't know why?). So I ...
0
votes
3answers
186 views
Cookie limit on the site's individual pages
So I know browsers limit the cookie number to something like 200 ...or whatever (the idea is that there is a limit).
I need to mark a site's page as viewed by the current visitor, so I'm setting a ...
0
votes
1answer
604 views
Does not Wininet handle Set-Cookie param in http response header?
I have a custom http component that uses Wininet to handle http POST and GET. It works fine, but some sites return a Set-Cookie param in the response header and they expect this cookie to be used by ...
3
votes
2answers
5k views
How to set and retrieve cookie in http header in python
I need to get the cookie from the response that send by the server and put it in the next request's header.I am new to python.
Thanks in advance....
4
votes
2answers
592 views
PHP to htaccess?
<?php
setcookie('a', $_SERVER['REQUEST_URI']);
header(location: "index2.php");
?>
im new to .htaccess and wonder how to convert this php script to .htaccess code
here are lines what I ...
1
vote
4answers
1k views
Is it OK to send cookie headers directly with “header()” calls?
Is it OK to send cookie headers directly with header() calls?
I am tinkering with http cookie mechanism in PHP and would like (at least initially) to try the "raw" thing :)
The Brad Christie's ...
2
votes
1answer
3k views
Rewrite rules for response headers in IIS 7 (replacing the cookie path)
I have to port my web application from apache to IIS 7 and got into trouble with the proper configuration.
In the apache configuration, I configured some mod rewrite stuff (in order to communicate ...
0
votes
0answers
658 views
Cookie values can not contain '\t\r\n\013\014' - how to solve this error?
I keep seeing an error show up daily in the error log in my domain's root folder. Here's the area of concern, which repeats a few times and that's it:
[11-Mar-2011 09:03:07] PHP Warning: Cookie ...
4
votes
1answer
1k views
Rails 3 is changing session ID on POST from AIR
I have a REST API in Rails 3 being accessed sometimes from an AIR application and sometimes from the browser.
I think this is a Rails 3 problem but it might be a Flex/AIR problem.
The Rails app uses ...