Tagged Questions
7
votes
4answers
2k views
Modifying HTTP response headers in Firefox
Does anyone know if Firefox extensions are allowed to modify HTTP response headers? For example, can an extension remove the x-frame-options header to let the page load in an iframe?
Thanks
5
votes
1answer
621 views
HTTP headers “q” factor in firefox?
Does anyone know what the "q" factor HTTP headers emitted by Firefox 3 mean?
It only appears in the Accept and Accept-Charset headers.
For example:
Accept: ...
5
votes
6answers
3k views
Send Host header when accessing IP address in Firefox
This isn't really a programming question but more about programming and testing tools.
Is there a way to get Firefox to send the header
Host: mydomain.com
when accessing a page at
...
4
votes
1answer
199 views
Why would certain browsers request all pages on my ASP.Net Web site twice?
Firefox is issuing duplicate requests to my ASP.Net web site. It will request a page, get the response, then immediately issue the same request again (well, almost the same -- see below). This happens ...
4
votes
2answers
572 views
Why does firefox round-trip to the server to determine whether my files are modifed?
I have some static content on my web site that I have set up caching for (using Asp.NET MVC). According to Firebug, the first time I open the page, Firefox sends this request:
GET ...
3
votes
2answers
425 views
Why is Firefox prompting to download a file that is POST'd to?
This is the most peculiar thing.
It is from an old in house CMS.
When I attempt to submit my changes, it prompts to save the file linked in the action attribute of the form.
Headers
Request
POST ...
2
votes
2answers
244 views
Excluding in Live HTTP Headers plugin for Firefox
I am trying to exclude gmail's requests from Live Http headers, but I cant
seem to get the exclude reg ex to work.
My exclude regex is this: .gif$|.jpg$|.ico$|.css$|.js$|.*mail.google.com.*
Any ...
2
votes
2answers
2k views
Setting HTTP Headers form a Firefox Extension
How can I set HTTP headers in my firefox extension?
I'll make it so these are only sent while hitting my site so I can detect if the plugin is installed or not and not promote the plugin if it is.
...
2
votes
3answers
388 views
Is there a Firefox plug in which can list unsecure assets which are causing the “Warning: Contains unauthenticated content”
I am developing web pages which reference external links/images/stylesheets etc. I have 1 page which loads fine in HTTPS, but then when I apply different external styles, some of the external styles ...
1
vote
1answer
17 views
Expires HTTP header
I am checking files that are cached in my firefox browser and I note a load of them have an expires of:
"1970-01-01 00:00:00" expires header
This must be a common setting with a common meaning. ...
1
vote
1answer
285 views
Firefox not using cached copy of file after 304
I'm seeing a behaviour in Firefox which seems to me unexpected. This is not particularly repeatable (unfortunately) but does crop up from time to time. Once it starts, it is repeatable on refreshing ...
1
vote
2answers
2k views
customizing default values for HTTP request headers in Internet Explorer
In Firefox, we can customize the default values for HTTP headers, let's say for changing the "Accept-Encoding" header in an HTTP request (type "about:config" in browser and serach for preference ...
1
vote
1answer
298 views
Specific Client Detection based on headers. Firefox extension?
I have a website in which I want to be able to detect a certain user based upon a permanent attribute of a specific user.
My original plan was to use an ip address but those are difficult to maintain ...
0
votes
0answers
7 views
Checking cache control max age setting in firefox
Firefox has a cool feature which allows me to check the cache.
I simple type
about:cache
in the address bar and some useful cache information appears. This includes every file cached and its ...
0
votes
0answers
41 views
firefox not display resized thumb images
I created one function running at Nginx server that provide resize some images and display website.Normally this function works like a charm at google chrome and display all images correctly but not ...
0
votes
1answer
65 views
Log HTTP Header redirects, ideally in Firefox
I'm attempting to diagnose a specific failing test case in a legacy X-Cart installation, and determining program flow from reading the PHP source is non-trivial. I need to be able to see what ...
0
votes
1answer
193 views
application/pdf object opening in adobe reader but not in firefox browser tab asp.net mvc
I have my controller action method returning pdf file as
public FileContentResult GetPDF(string filename)
{FileContentResult filecontent= new FileContentResult(Contents, "application/pdf");
...
0
votes
1answer
66 views
What is the most reliable part of the user-agent string to detect Internet Explorer?
For example, does the version token always start with MSIE using Internet Explorer?
Can MSIE show up as the token of another browser?
Thank You.
...
0
votes
2answers
516 views
HTTP Cache-Control
I'm new to HTTP caching and really need some help...
I saw many people set the "Cache-Control" header when sending XHR to server.
What is the purpose of doing that? Does request header needs ...
0
votes
3answers
828 views
PHP form validation + cookies = Firefox cache problem?
I have a simple form validation class in PHP. It works like this:
A: form page that POSTs results to VALIDATION page
VALIDATION: checks results. If wrong, set cookies with the name of the fields ...
0
votes
3answers
804 views
Why Does FireFox Not Include the .xml Extension when Downloading a File?
OK. I'm sure it does download XML files with the .xml extension, but I'm wondering what is missing in the code here to cause the .xml extenstion to be missing from the downloaded file.
Note: This ...
0
votes
3answers
1k views
How do I force or add the content length for ajax type POST requests in Firefox?
I'm trying to POST a http request using ajax, but getting a response from the apache server using modsec_audit that: "POST request must have a Content-Length header." I do not want to disable this in ...