Sorry for the probably wrong title. I am writing some code to handle If-Modified-Since and If-None-Match requests as part of caching. Everything works perfect except for that PHP returns some content (an empty line) after the headers. The page content should be empty instead. The code that I am using is:

<?php
$lastmod = filemtime($f);
$etag = '"'.dechex($lastmod).'"';
if ($_SERVER['HTTP_IF_MODIFIED_SINCE'] == $last_mod || $_SERVER['HTTP_IF_NONE_MATCH'] == $etag) {
  header('HTTP/1.1 304 Not Modified');
  header('Content-Length: 0');
  exit();
}
?>
link|improve this question

50% accept rate
Your code didn't go through. Reattach? – mattbasta Mar 16 '10 at 3:18
Error here: redbot.org/… – Ameer Mar 16 '10 at 3:41
do not add the Content-Length header on 304 responses (ref RFC 2616 sec 4.3) – Hafthor Jun 16 '11 at 22:57
feedback

3 Answers

Try this code:

$last_modified = filemtime($f);
if(isset($_SERVER["HTTP_IF_MODIFIED_SINCE"])) {
    $expected_modified = strtotime(preg_replace('/;.*$/','',$_SERVER["HTTP_IF_MODIFIED_SINCE"]));
    if($last_modified <= $expected_modified) {
        header("HTTP/1.0 304 Not Modified");
        exit;
    }
}
link|improve this answer
My issue is not with detecting or returning proper headers, but just about an empty line outputted by php after the headers. – Ameer Mar 16 '10 at 3:30
Error here: redbot.org/… – Ameer Mar 16 '10 at 3:40
Do you have a register_shudown_function set? – mattbasta Mar 17 '10 at 12:06
I do not have a register_shutdown_function in my code. Could it be set by my webhost. I am using 110mb.com – Ameer Mar 20 '10 at 0:35
It could be that you've got some weird whitespace before your opening <?php. Look out for those. Also, make sure all of your files are in Unix EOL format (LF, not the Windows "CR" format). If all else fails, it's your host. – mattbasta Mar 20 '10 at 4:57
show 1 more comment
feedback

I found the solution in Answering HTTP_IF_MODIFIED_SINCE and HTTP_IF_NONE_MATCH in PHP

Create new file caching_headers.php

<?php
function caching_headers($file,$timestamp){
    $gmt_mtime=gmdate('r', $timestamp);
    header('ETag: "'.md5($timestamp.$file).'"');
    if(isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])||isset($_SERVER['HTTP_IF_NONE_MATCH'])){
        if ($_SERVER['HTTP_IF_MODIFIED_SINCE']==$gmt_mtime||str_replace('"','',stripslashes($_SERVER['HTTP_IF_NONE_MATCH']))==md5($timestamp.$file)){
            header('HTTP/1.1 304 Not Modified');
            exit();
        }
    }
    header('Last-Modified: '.$gmt_mtime);
    header('Cache-Control: public');
}
?>

and add this in all php files that you would like to cache:

<?php
include('caching_headers.php');
caching_headers($_SERVER['SCRIPT_FILENAME'],filemtime($_SERVER['SCRIPT_FILENAME']));
?>
link|improve this answer
As I mentioned above, my issue is not with detecting or returning proper headers, but just about an empty line outputted by php after the headers. – Ameer Feb 18 '11 at 5:26
@Ameer - Maybe use exit; instead exit();. – Binyamin Feb 18 '11 at 9:53
That doesn't work either. – Ameer Mar 5 '11 at 0:41
feedback

Finally solved this bug. Gzip was the culprit. Since I was gzipping the responses to If-Modified-Since and If-None-Match requests too, gzip was adding a few bytes (kind of a gzip header) to the response. Now I have stopped gzipping responses to If-Modified-Since and If-None-Match requests, and it works like a charm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.