From:             sworddragon2 at aol dot com
Operating system: Windows XP Professional SP3
PHP version:      5.3.1
PHP Bug Type:     Output Control
Bug description:  Oddly date related error message

Description:
------------
I have a script, that got sometimes a date - related error message but
nowhere is such a function called. I don't got the errors myself, I see
them just in my error log from other users.

Maybe this is not a bug, but i'm searching for a few days for a solution
and have no explanation why this bug at line 26 after a flush(); appears
(line 26 is marked as a comment in "Actual result:"). The error don't
appear at the most time. This is very randomly.

Reproduce code:
---------------
<?php
        header('Expires: Tue, 19 Jan 2038 03:14:07');
        header('Last-Modified: Thu, 01 Jan 1970 00:00:00');
        header('Cache-Control: public');
        require_once($global['path'].'core/global/functions/mime_type.php');
        if(!$mime_type=mime_type($_GET['file']))
                if(isset($_GET['mime_type']) && 
($_GET['mime_type']==='image/bmp' ||
$_GET['mime_type']==='image/gif' || $_GET['mime_type']==='image/jpeg' ||
$_GET['mime_type']==='image/png' || $_GET['mime_type']==='text/css' ||
$_GET['mime_type']==='text/html'))
                        $mime_type=$_GET['mime_type'];
                else
                        $mime_type='text/plain';
        header('Content-type: '.$mime_type.'; charset=utf-8');
        $size=filesize($_GET['file']);
        $file=fopen($_GET['file'],'rb');
        if($global['server_configuration']['compress_'.$mime_type]==='TRUE')
                ob_start('ob_gzhandler');
        else
                ob_start();
        while($size>$global['server_configuration']['output_buffer'])
        {
                $size-=$global['server_configuration']['output_buffer'];
                echo 
fread($file,$global['server_configuration']['output_buffer']);
                if($size>0)
                {
                        ob_flush();
                        flush();
                }//This is line 26
        }
        if($size>0)
                echo fread($file,$size);
        ob_end_flush();
        fclose($file);
        exit();
?>

Actual result:
--------------
Warning: main(): It is not safe to rely on the system's timezone settings.
You are *required* to use the date.timezone setting or the
date_default_timezone_set() function. In case you used any of those methods
and you are still getting this warning, you most likely misspelled the
timezone identifier. We selected 'Europe/Paris' for '1.0/no DST' instead in
E:\Programme\Lokaler Server\Apache Software
Foundation\Apache2.2\htdocs\tower-defense\core\global\includes\load_content.php
on line 26


If needed I can post the declared variables at the moment the error
appears or other related scripts.

-- 
Edit bug report at http://bugs.php.net/?id=50626&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=50626&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=50626&r=trysnapshot53
Try a snapshot (PHP 6.0):            
http://bugs.php.net/fix.php?id=50626&r=trysnapshot60
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=50626&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=50626&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=50626&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=50626&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=50626&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=50626&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=50626&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=50626&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=50626&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=50626&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=50626&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=50626&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=50626&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=50626&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=50626&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=50626&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=50626&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=50626&r=mysqlcfg

Reply via email to