Tagged Questions

7
votes
4answers
484 views

What is the correct HTTP status code to send when a site is down for maintenance?

Is there a HTTP status code to tell Google (and others) to go away, index me again later? Basically, one that semantically tells clients that the site is down for maintenance? The ones I have ...
3
votes
3answers
94 views

Tracking and testing for abusive clients in PHP

Now there is a subject that could be taken many ways. Hopefully I will be able to de-obfuscate it as I describe my problem and start getting suggestions. I am developing a site that will be ...
2
votes
3answers
57 views

When using Ajax with PHP, which of the following are necessary to verify success?

Which of the following answers are correct ? HTTP ready state of TRUE HTTP ready state of 4 HTTP status code < 400 HTTP status of 200 Data present in the response
1
vote
2answers
62 views

Invalid first parameter ($string) of header() has no effect while using the third parameter ($http_response_code)

Short question: Can I rely on the behaviour of header('.', TRUE, 404);, header('.', TRUE, 501);, etc.? Now, let me elaborate. Before asking my question, I'll present a few usages of the header() ...
1
vote
2answers
1k views

PHP: How to send http response code?

I have a PHP script that needs to make responses with http response codes, like HTTP 200 OK, or some 4XX or 5XX code. How can I do this in PHP?
0
votes
2answers
327 views

Getting multiple http response codes using cURL?

Please take a look at this sample code: function http_response($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, TRUE); ...