ID: 9806
User Update by: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Open
Bug Type: Filesystem function related
Description: fwrite doesn't work on Windows 2000 with Apache Server.

Thank you Jani!
This is the code:

if($fd_url = fopen("http://www.some_site.com/some_picture.jpg", "r"))
{
        $fd_img = fopen("c:\\some_picture.jpg", "w");
                                
        while (!feof($fd_url))
        {
                $buffer = fread($fd_url, 4096);
                fwrite($fd_img, $buffer, strlen(buffer));
        }

        fclose($fd_img);
        fclose($fd_url);
}

Previous Comments:
---------------------------------------------------------------------------

[2001-03-17 13:20:17] [EMAIL PROTECTED]
What was the fopen() line you have used?

--Jani


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

[2001-03-17 06:51:05] [EMAIL PROTECTED]
I have two web servers with Windows 2000 running on them.
One of them uses as a web server Microsoft IIS and the other one Apache 1.3.19 for 
Windows. I have a php script which connects to a remote web server and grabs an image. 
The image is written on a file (with fwrite function) and saved on the local harddisk. 
If I run the php script on IIS the image is saved correctly. If I run the php script 
on Apache the image is corrupted (has a larger length in bytes; usually, between 1-50 
bytes).

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


Full Bug description available at: http://bugs.php.net/?id=9806


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to