Tagged Questions
1
vote
2answers
35 views
How to send text/html data to a browser
Hi i asked a question before here : how-can-i-integrate-php-with-my-http-server
i programmed a personal web server and i tried to integrate it with PHP using the PHP-CGI , i run a system command ...
0
votes
1answer
17 views
Is correct to send HTML and a PDF file in the same request?
I have to send a PDF to the user, but this PDF is generated by a command line tool executed from PHP (server side). When the user clicks on a link this is executed:
window.open($(this).attr('href'), ...
-4
votes
2answers
38 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 ...
0
votes
1answer
32 views
Rewrite HTTP server header with PHP
When I try to use this code:
header('X-Powered-By: ASP.NET');
header('Server: Microsoft-IIS/7.5');
the headers that have sent are:
Server:Apache/2.2.22 (Win64) PHP/5.4.3
X-Powered-By:ASP.NET
...
0
votes
2answers
65 views
PHP header issue
I have set php header as
header("Content-Type: application/xml");
And I got following response
<?xml version="1.0" encoding="utf-8"?>
<feedback>
...
0
votes
0answers
22 views
PHP HTTP HEADER: how to keep/rebuild apache2's last-modified&ETag
calling a .html on my website directly the header will be:
HTTP/1.1 200 OK
Date: Tue, 07 May 2013 14:53:30 GMT
Server: Apache
Last-Modified: Tue, 24 Aug 2012 21:51:42 GMT
ETag: ...
1
vote
1answer
60 views
PHP code doesnt “compile” when connecting via sockets
I am writing a script for mIRC that will fetch data from my webserver, that code is generated via PHP.
It works just fine when i connect via my browser (firefox).
However, when i connect via the mIRC ...
1
vote
1answer
58 views
Different ways of resolving the WWW URL prefix
It seems that the most commonly accepted method of redirecting users from http://example.com to http://www.example.com is by 301 Permanent redirect, but I came across a site(Facebook) that appears to ...
-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 ...
2
votes
2answers
45 views
What content-type header has been set?
How can I find out if this header: header('Content-Type: application/json') has been set during script execution?
`
1
vote
0answers
40 views
PHP Video Streaming to iPad
I am trying to stream mp4 video via PHP. My application loads video from where it is stored in blocks and serves the appropriate parts. Uses these headers:
header("Content-Type: $contenttype");
...
3
votes
2answers
191 views
CORS preflight request returning “403 Forbidden”; subsequent request then only sending in Chrome
After failure using pluploader in this question, I'm now trying FineUploader.
After reading up on CORS, I've implemented various headers on my IIS6 server.
What seems to happen is that my script ...
0
votes
1answer
19 views
Headering X-csrftoken
I need create a log-in script to some form.
The problem is that the log-in required a X-scsrf-token.
I have the token itself, but the problem is that I cant find a way to send this parameter.
Thank ...
0
votes
0answers
46 views
random codeigniter error “cannot modify header information - headers already sent” when refreshing page [duplicate]
I have already read like half a dozen similar questions here, and already double checked that there are no white spaces before <?php or after ?> in my library.
Ok note that I get this error ...
1
vote
2answers
49 views
PHP Redirect, Iptables, and data after connection closed
This is an odd one. We recently found a 3-month old bug in our code where we post a 302 redirect header after a print_r. As a result, the browser would receive the string, and not redirect to the ...
1
vote
1answer
182 views
PHP curl changes the Content-Type to application/x-www-form-urlencoded. Shouldn't do that
I want to upload a video direct to Youtube from my server for which I am using PHP curl.
I need this request format:
POST /feeds/api/users/default/uploads HTTP/1.1
Host: uploads.gdata.youtube.com
...
1
vote
2answers
54 views
get_headers() on Gravatar returning 200 instead of 404
I'm passing a URL that should generate a 404 Error, using PHP's get_headers(). In fact, if I use the URL as a link, I get a 404 Error in my browser. And if I use the URL (which is to an image file) as ...
0
votes
0answers
62 views
Get direct download link instead of downloading the file, with cURL
I'm using cURL and I find myself in this situation:
the site I'm scanning with regex apparently start downloading immediately after a very specific post request (which just elaborate with cURL), the ...
1
vote
1answer
49 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
47 views
Missing file extension on download from header
i'm using the below code to download a file, which work's well but the problem is that the file extension is missing, even after stressful download . i have tried changing it to other MIME types, ...
0
votes
3answers
38 views
Header-redirection within php-code won't work
I want to redirect the user after emailing me.
The code runs unless i put something after the email()-method (like the header()-method).
Any hints?
function process()
{
$msg = "Form ...
1
vote
1answer
77 views
remove http response headers in zend
I have a problem with an app in Zend Framework (1).
In a specific action I try to remove some headers but in response I still recieve those headers:
$this->getResponse->clearAllHeaders()
...
18
votes
10answers
963 views
User recognition without cookies or local storage
I'm building an analytic tool and although I can get IP address, browser and operating system from the user agent.
I'm wondering if there is a possibility to detect same user without using cookies or ...
0
votes
2answers
106 views
Restrict access to directory, using .htaccess, if some page returns 404
I am trying to deny access to an entire directory, unless a file (where ever it may be) returns a 200 status. This needs to be written in my .htaccess file. I am aware this is not valid .htaccess ...
0
votes
2answers
68 views
PHP: headers already sent when using fwrite but not when using fputcsv
I know the theory behind this error however it is now driving me crazy again. I'm using Tonic in my application. With this library you redirect all traffic to your dispatch.php script which then ...
2
votes
1answer
86 views
Download resume and zip file issue - PHP [duplicate]
I'm really stuck with it. I made a function as below (a wp plugin). That handles download requests.
The download url format is like this:
...
0
votes
0answers
31 views
“Bad Gateway Error 502” when trying to download server-generated .zip file
I'm getting a "bad gateway error 502" when trying to download a server-generated .zip-file
I've isolated the line that causes the error; it's:
...
0
votes
1answer
57 views
Empty request detection PHP
I have an issue where the web host company is sending header only requests to the server which is then trying to be 'kind' and action them... request data;
10.252.237.56 - - [29/Mar/2013:15:25:48 ...
-2
votes
1answer
29 views
How to best parse 1 HTTP header VALUE in PHP?
I have a very important, detailed HTTP header in my response that I want to parse the value of to get the details:
Digest realm="My Very, Very Cool Site", ...
-1
votes
1answer
70 views
bandwidth calculation [closed]
I need to calculate the bandwidth of the client on server side, i know the timings like
1) time when request was generated on client
2) time when request reached the server
3) time when response is ...
0
votes
0answers
75 views
Convert ASP HTTP request to PHP Curl request
If this code is correct and working in asp
String xmlstc = "Some XML Code";
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(server);
httpWebRequest.Method = "POST";
...
0
votes
2answers
73 views
request header details sent from client to server using PHP
How to get request header details which client send to server like the URL + cookie + postdata + other stuff
1
vote
1answer
260 views
Header 'X-XSS-Protection: 0' not preventing error
After submitting a form with a Vimeo video link, the video is not showing and Safari returns: Refused to execute a JavaScript script. Source code of script found within request. The video does show up ...
-1
votes
1answer
62 views
Parse error: syntax error, unexpected T_SL in /home/down12/public_html/wp-content/themes/maxmag/header.php on line 37 [closed]
I'm Getting error On this ... i cant understand cz there is nothing in line 37 ... here is my code :
enter code here
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ...
0
votes
1answer
208 views
Nginx close keep-alive connection from php
Hello Everybody
I have trouble with nginx server . I have configured nginx with keep alive connection.
keepalive_timeout 65;
And connect to server with persistent connection , i send many request ...
0
votes
2answers
57 views
How to retrieve particular header fields from a raw HTTP response?
This is what $result returns :
HTTP/1.1 200 OK
Server: SERVER
Content-Type: text/xml;charset=utf-8
Connection: close
Expires: Tue, 26 Mar 2013 00:28:45 GMT
Cache-Control: max-age=0, no-cache, ...
0
votes
1answer
161 views
ajax call from pure javascript not returning response from remote php file(no jQuery)
I am using pure javascript to make an ajax call to a PHP file which is residing in the remote server. But it is not returning the response.
The page which is making the ajax call is in my localhost.
...
0
votes
0answers
67 views
Php Auth header doesn't work
After a long research on internet , I have found a method that seems to work , but not on the website I want.
<?php
$username = '';
$password = '';
$url = 'https://web.esme.fr/pscripts/bsp';
...
0
votes
0answers
111 views
FAST CGI SERVER with PHP 5.3.3 Internal Server Error during install
Worked fine with old server configuration. When upgraded site from
SERVER API - Apache 2.0 Handler with PHP 5.2.5, DRUPAL 6.28
TO
SERVER API - CGI/FastCGI with PHP 5.3.3 version, DRUPAL 6.28 and some ...
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: ...
1
vote
0answers
52 views
Download gzipped file through CloudFlare
I have a PHP file protector script:
.htaccess
RewriteEngine on
RewriteRule ^(.*).(zip|tgz)$ ../wp-file-protector.php?file=$1.$2 [QSA]
wp-file-protector.php
<?php
global $wpdb;
/** Make sure ...
0
votes
2answers
66 views
mPDF headers already sent [duplicate]
I'm using mPDF to create a pdf from html.
Right now I'm getting the error "Warning: Cannot modify header information - headers already sent in". This is because I show some html (just site template) ...
0
votes
2answers
413 views
Twitter Application Only Authentication PHP OAuth error
I'm trying to get my application to authenticate via Twitter's application only authentication. See documentation at the following URL:
Twitter Developer Documentation fro Application-only ...
-1
votes
1answer
91 views
passing headers into file_get_contents() for a json request [duplicate]
I need to pass these headers into the $context variable, i tried using putting the values into an array and then passing it into stream_context_create() function but i get http warnings from the ...
0
votes
1answer
51 views
Add the Http_X_Forwarded_For header in a request in python
I have a small PHP code in a web server. The PHP code just log the IP of the people that do a request with this line:
$ip = !empty($_SERVER['HTTP_X_FORWARDED_FOR']) ? ...
0
votes
1answer
56 views
check if client can access the page, if not do something
I'm working on "CDN" video delivery script. my problem is not all providers are included, therefor I need to check if the client can access the link, if not send him another one.
i've tried with ...
2
votes
2answers
104 views
How can I correct this regular expression to capture all the repeating parameter groups in PHP?
I am trying to parse the HTTP Accept header to extract all the details from it.
I am making the following assumptions:
Each entry must start with and contain at least type/subtype, optionally with a ...
1
vote
1answer
56 views
Inconsistent HTTP redirect behavior between hosting environments
This is a follow up question to one I asked a few days ago and ultimately managed to resolve myself. While I was happy to find the underlying problem, the fact that the issue only manifested in one ...
7
votes
3answers
6k views
determine if user is using proxy
Hi I'm creating a game and I would like to be able to tell if a user is using a proxy. If they are than it basically puts a flag on their account. I can make it do the flag and all but I'm not ...
280
votes
7answers
148k views
correct HTTP header for json file
I've searched around and found two different ways to define Content-type for JSON file loaded with php.
header('Content-type: text/json');
header('Content-type: application/json');
which one should ...





