ID: 9806 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Filesystem function related Assigned To: Comments: RTFM: http://www.php.net/fopen ie. Just add the 'b': fopen("http://www.some_site.com/some_picture.jpg", "rb" fopen("http://www.some_site.com/some_picture.jpg", "wb" --Jani Previous Comments: --------------------------------------------------------------------------- [2001-03-17 13:35:52] [EMAIL PROTECTED] 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); } --------------------------------------------------------------------------- [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). --------------------------------------------------------------------------- ATTENTION! Do NOT reply to this email! To reply, use the web interface found at http://bugs.php.net/?id=9806&edit=2 -- 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]