Tagged Questions
0
votes
1answer
23 views
PHP PDO Header redirect stopped working [duplicate]
I've built a site on my test server and now I'm putting it on a new server that will host my site. I'm using PDO for my connections and once the prepared statement executes I redirect back to the ...
-4
votes
2answers
49 views
PHP Form Header Location not working [duplicate]
I'm trying to build a form using php error checking on the same page.
Everything seems to be working fine except redirecting visitors to another page on my website (thanks.html) after they've filled ...
-4
votes
0answers
37 views
PHP Change Content before sending [closed]
I don't know if this is possible and i have been looking into it for a while but couldn't find it.
Okay so here is the main concept
and php file is read and parse and it outputs html and starts to ...
0
votes
0answers
24 views
Setting HTTP Header in Apache
Want to set below headers into apache virtualhost configuration.
Accept: application/json;
Content-type: application/json; charset=utf-8
Any idea how I can set these? is it possible to set these ...
2
votes
3answers
81 views
Generated xml file is harmful for cumputer?
I did an xml file and force download it by these headers:
header('Content-disposition: attachment; filename="export.xml"');
header('Content-type: application/xml; charset=utf8');
...
1
vote
1answer
68 views
PHP - header() redirect: Firebug logs 404 - why?
I am using a PHP redirect in one of my projects. I do it like this:
header( 'Location: http://domain.net/?cig=warn&onum=' . $onum . '&cnum=' . $cnum . '&c=' . $c . '#Form' );
So you ...
0
votes
1answer
62 views
What Content-Length to put when preforming GET request?
I know that when preforming POST Curl u set the content length using strlen($postdata)
However, when doing GET how can I determine the content length?
This is my code :
curl_setopt($CR, ...
0
votes
0answers
34 views
HTTP Headers caching [closed]
I am not totally sure bout HTTP headers, but from what I read its good to have some level of caching on static pages also I am not sure if Transfer Encoding: chunked is a good thing. I was not finding ...
0
votes
0answers
13 views
URLStream gets consistent IOError #2032 when loading a file [duplicate]
Possible Duplicate:
Error #2032: Stream Error
with AS3 in AIR 3.5 (desktop):
I'm trying to load & save a file from a server.
For the loading part...
It works with navigateToUrl ...
1
vote
1answer
53 views
File downloading partially and I need entire file
I have some files I am trying to download on my server through the use of headers. It finds the file, but its only downloading 200 to 300 kbs of these files when they are 2 to 3 MBs. I can't seem to ...
0
votes
1answer
32 views
Some information about Accept Header when I have an URL that end with a specific extension (like .xml)
I have a question about Accept HTTP Header.
If I have a link ending with a specific extension, like in this case where my URL end with .xml:
<a id="writeXmlExt" class="writeXmlLink" ...
0
votes
1answer
141 views
Why could a browser not caching a resource with Cache-Control HTTP headers?
I've read all the caching documentation for HTTP, and this are the headers for my file:
Edit: I am now using amazon S3 to see if it helps and still the same problem! Here go the request and the ...
0
votes
1answer
90 views
Browser downloads file instead of displaying it
I am using php readfile to send a file to the browser. Its is an image file. Howver the browser downloads it, instead of displaying it.
This is the response header:
HTTP/1.1 200 OK
Date: Tue, 15 Jan ...
2
votes
1answer
138 views
Are there any legit reasons why PHP's “HTTP_X_FORWARDED_FOR” or “HTTP_CLIENT_IP” would be different from “REMOTE_ADDR”?
I'd like to implement certain security and other features for users in certain geographical areas. I'm aware that the "HTTP_X_FORWARDED_FOR" and "HTTP_CLIENT_IP" can be faked, but are there any actual ...
1
vote
2answers
150 views
cUrl keep on sending header information if set to false
With cUrl I want to get a xml file to read it after with SimpleXmlElement. But because cUrl keep on sending header information at the response my XML document is invalid.
What do I have to do to ...
1
vote
0answers
102 views
Nginx, how to add header if it is not set
I wanna add header (Cache-control) by nginx if only it is not set.
I need to increase cache time (use php) in some case, and "say" nginx via header.
Sorry, if it's not clear, I'm really a newbie)
1
vote
1answer
79 views
how to set ip in header and then run script with cron job?
i have script this code:
require_once 'Request2.php';
$request = new HTTP_Request2('http://fakevisit.blogfa.com/');
$request->setHeader(array(
'Accept: ...
3
votes
2answers
114 views
Can you force a browser to always fetch the cached files and not do a round trip for a 304?
As I understand, this is how browser caching works. Assuming, a far future header has been set to let's say a year and foo.js is set to be cached. Here are some scenarios:
First visit to the page, ...
6
votes
1answer
458 views
MHTML File Header Redirect showing source code with MIME segments
I am having an issue getting an iframe to display MHT files:
if( strtolower( substr( $filename , -4 ) ) == ".mht" ){
$filename = str_replace( "/" , "\\" , $filename );
header("Content-type: ...
1
vote
1answer
23 views
Is there a way to add OS info into header(or some other places) to make a GET/POST request look like coming from certain system?
For example, I can easily "make" the request from FireFox:
import urllib2
header = {"User-Agent": "Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20100101 Firefox/14.0.1"}
req = ...
1
vote
1answer
878 views
Sending 'X-Requested-With: XMLHttpRequest' and other headers via CURL - other ways?
I have, of course, read several questions with exactly this asked, but I have to say it didn't work for me at all. What I am about to accomplish is
sending 'X-Requested-With: XMLHttpRequest' header ...
0
votes
1answer
99 views
WSO2 Header Mediation, 401
I would like to return a 401 response on a message after a failed authentication. I believe this can be done through a header mediation, but not sure. I just dont know what namespace it would be or ...
1
vote
4answers
237 views
How can I render a remote image with php?
Here's a jpg: http://i.stack.imgur.com/PIFN0.jpg
Let's say I'd like this rendered from /img.php?file_name=PIFN0.jpg
Here's how I'm trying to make this work:
/sample.php
<p>Here's my ...
0
votes
0answers
129 views
Is it possible to analyse http headers using iptables (libnetfilter_queue) library
What i want to do is that, analyze the header of packet with protocol http. I want to filter packets based on mime types (or any other value ) contained in their http headers. Is it possible at all!
0
votes
1answer
27 views
What part of a HTTP header gets parsed my rewrite engines?
Given the below header:
GET /resources/css/jquery-ui.css HTTP/1.1
Host: site.com
Connection: keep-alive
Cache-Control: no-cache
Pragma: no-cache
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X ...
1
vote
0answers
111 views
QNetworkReply does not retrieve Content Disposition Header
if(reply->rawHeaderList().contains("Content-Disposition"))
check=reply->rawHeader("Content-Disposition");
else
check="no result";
The result is “no result” Is this a bug, or is there ...
0
votes
1answer
135 views
Zend-pdf: Pdf does not begin with %PDF-1.4
I have tried as following in magento 1.7
$pdf = new Zend_Pdf();
....
....
$pdfString = $pdf->render();
header("Content-Disposition: attachment; filename=helloworld.pdf");
...
0
votes
0answers
64 views
406 when loading image
Having weird 406 error when loading images. I created a dynamic products page, which has a PHP class that goes like this:
<img src="'.$imgpath.'" alt="'.$productdesc.'" />
When I visit ...
1
vote
2answers
143 views
How to speed up a website's HEADERS load time?
After thorough optimizations of my website (scoring 95 on google PageSpeed & 96 Yahoo YSLOW) I am puzzled by why the header(s?) take up a relatively long time to load. Is 11 KBytes header ...
0
votes
0answers
179 views
Get a video's Header.length (File Size) in Windows Phone SDK
I am trying to get the Video size in MB for Windows Phone. This video is streamed to a given Windows Phone and I want to display the size of the video. I'm using MediaElement to play the video inside ...
0
votes
1answer
1k views
How does google deal with www.google.com/ncr?
I tried to find out this, and got that http://www.google.com/ncr uses 302(or 301) redirections(not sure if it really is).
and i also got that, the server side redirections(301 and 302) will not ...
0
votes
0answers
278 views
Access-Conrol-Allow-Origin on multiple files for cross-domain
I've encountered that this does not work on multiple files when working with cross-domain. Anyone have any reason or am I doing something wrong? I was able to have it work on one PHP file ...
0
votes
2answers
225 views
full URL path in ajax
Is it okay to put full URL path in ajax? I'm having problems accessing the url and I'm getting status 0 for my error response.
$.ajax({
url: ...
2
votes
1answer
2k views
Headers not setting with redirect using node.js / Express
I am relatively new to node.js, Express, and mobile development, and have run into a problem that I think has to do with sending headers with Express.
The user starts at the home page '/', not ...
0
votes
1answer
162 views
Is it problematic to cache files for too long?
I discovered https://developers.google.com/speed/pagespeed/ the other day and have improved my website's page speed from ~75 to ~95 now.
One of the last few things it recommends is that I:
Leverage ...
-1
votes
4answers
108 views
Cannot modify header information using a header.php file [duplicate]
I have a header.php file, which is included on every page of a site and it contains things like the information and the opening tag.
Now whenever I try to send header information from another page ...
1
vote
2answers
169 views
PHP Redirect without affecting headers
I'm trying to create a PHP script that will always be called on every page load, without altering existing code of a website, and as little extra configurations as possible.
Here's my problem, I do ...
2
votes
1answer
329 views
Setting headers to override IE intranet compatibility mode in ASP.NET
I have an intranet site that loads in IE7 compatibility mode, unless the user has unchecked "Display intranet sites in Compatibility View" on their version of IE8. Unfortunately, the client wants this ...
0
votes
3answers
217 views
PHP header pass parameters in url
I have an index.php for registration, a login.php as the registration handler. when the registration is failed, it sent out the error message to client. I use this code for sending out the message
...
0
votes
0answers
39 views
Proxy Server Conversation
How is the proxy server communications ?
Suppose I've HTTP Proxy. and I make a request to google.com:80 with some HTTP Headers. The Proxy servers relays those Headers to google.com:80. But how it ...
-2
votes
1answer
68 views
What is the proper way to send headers in PHP to revalidate images?
What I'm trying to do?
I have an admin page where I can change images - they all use fixed names, and are uploaded directly to the file system, but sometimes when I upload it just displays an old ...
0
votes
1answer
91 views
Why is the Accept header prefixed with HTTP_?
I've noticed that it's almost an universal convention to prefix Http headers with HTTP_ when accessing them from a web server. Can anyone explain to me the circumstances about how this came about?
0
votes
1answer
243 views
MAMP: Header(Location: ) function stopped working
I am working on a login system for my PHP site. So to keep things basic, there's a login.php page and a loginProcessor.php page. The processor page verifies the email and password entered, ect... In ...
0
votes
2answers
335 views
How to set http headers with different content type
I have a webpage dynamically created via Python. Its purpose is to provide images, so the first line sets the content type:
Content-Type: image/png
I would like to set http headers, specifically ...
1
vote
1answer
181 views
Header expire dosent work
I test this script that i found on this web site http://www.sitepoint.com/caching-php-performance/
function setExpires($expires) {
header(
'Expires: '.gmdate('D, d M Y H:i:s', ...
1
vote
2answers
478 views
Can't seem to send 404 and Location headers together
I am trying to send both when a database result is empty (it's a product page).
My code I am using now, which works:
header("Status: 404 Not Found");
include_once("404.html");
exit;
...
4
votes
2answers
455 views
Why is Firefox not sending Referer in HTTP headers when I play HTML5 mp3 files?
I am having the problem that Firefox is not sending the Referer in the HTTP headers when I'm accessing an MP3 file through HTML5.
I'm using the player from jPlayer.org to play mp3 files, and I'm ...
0
votes
2answers
314 views
How to catch error when get_headers() tries to resolve unresolvable host?
Consider the following:
$url = 'http://psyng.com/u/9716602b';
$headers = get_headers($url, 1);
print_r($headers);
Since the domain psyng.com is unresolvable, this code results in:
Warning: ...
1
vote
1answer
1k views
Force file download header
We're having a weird issue with offering a file on our ASP.NET server.
If the user clicks a link we want to have a file download dialog. No WMP opening for WMVs, no Adobe opening for PDFs, and so on.
...
1
vote
1answer
157 views
PHP headers expiration check
I create a custom application, and I like to pass some PHP variables into CSS.
The approach I use, is a style.php file that serving CSS headers, so the HTTP request it addresses the request as a ...

