Edit report at https://bugs.php.net/bug.php?id=50007&edit=1

 ID:                 50007
 Comment by:         phbug at netspider dot kiev dot ua
 Reported by:        vlad at todosv dot com
 Summary:            PHP working as FastCGI can't send Last-Modified
                     header
 Status:             No Feedback
 Type:               Bug
 Package:            CGI related
 Operating System:   Any, but tested in Ubuntu
 PHP Version:        5.2.10
 Block user comment: N
 Private report:     N

 New Comment:

Still experiencing this bug in PHP 5.3.8 and 5.2.17.


Previous Comments:
------------------------------------------------------------------------
[2009-11-19 12:32:27] phpmyforum at gmail dot com

Still experiencing this bug in PHP 5.3.0

------------------------------------------------------------------------
[2009-11-04 01:00:02] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------
[2009-10-27 22:20:48] j...@php.net

Please try using this snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/

Works, fine, for, me.

------------------------------------------------------------------------
[2009-10-26 23:17:59] vlad at todosv dot com

Description:
------------
Keeping it simple:

If you have PHP as a Apache's Mod you can send Last-Modified without problems.

If you have PHP as CGI/FastCGI Last-Modified header is not sent as intented, 
and which is worse, it's sent as: Last-Modified    Thu, 01 Jan 1970 00:00:00 
GMT.

The problem with this is that I can't do custom file caching by sending 304 
header.

Reproduce code:
---------------
<?php
        header('Last-Modified: mon, 26 oct 2009 18:26:27 GMT');
        header('mtime: mon, 26 oct 2009 18:26:27 GMT');
        print implode('<br />',headers_list());
?>

It will output the same header_list() regardless it's *CGI or as apache mod.

It prints the following:
X-Powered-By: PHP/5.2.10-2ubuntu6
Last-Modified:lun, 26 oct 2009 18:26:27 GMT
mtime: lun, 26 oct 2009 18:26:27 GMT

But received headers are not the same.

Expected result:
----------------
As an Apache Mod:
X-Powered-By    PHP/5.2.10-2ubuntu6
mtime   mon, 26 oct 2009 18:26:27 GMT
Last-Modified   mon, 26 oct 2009 18:26:27 GMT

Actual result:
--------------
As *GCI:
X-Powered-By    PHP/5.2.10-2ubuntu6
mtime   mon, 26 oct 2009 18:26:27 GMT
Last-Modified   Thu, 01 Jan 1970 00:00:00 GMT


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=50007&edit=1

Reply via email to