| Web Design and Hosting Creating sites, scripting, and hosting discussions. |
| Post Reply | New Thread | Subscribe |
|
|
Thread Tools |
|
Guest
Posts: n/a
|
I am trying to download a JPG file through a php page. The code is pretty straight forward, it obtains the filename from the query string, reads the file and outputs to the browser. Here is the code:
<?php $filename = $_GET["file"]; $bytes = filesize("PATH_TO_FOLDER/$filename"); header("Content-type: application/jpg"); header("Content-disposition: attachment; filename=\"$filename\""); header("Content-length: $bytes"); //Read the file and output to browser @readfile("PATH_TO_FOLDER/$filename"); //Code to record the download in database ?> Originally I had "Content-type: image/jpeg"), but later on changed to "application/jpg" after reading through some forums on web. Both the content-types work fine in all browsers on a Windows PC, but they behave very differently with IE5.2 on MacOSX and IE5.1 on Mac OS9. The "Save As.." box does not open and the image gets displayed directly on the window. If I try to save the image by Ctrl+Click and Download to Disk, it shows the filename as "download.php" instead of the correct name "FILENAME.jpg" given in the Content-disposition header. I did a lot of google and read in several forums that IE on Mac ignores the Content-disposition header. Is there any workaround for this. My aim is to display the "Save As.." dialog box on Mac IE (OSX and OS9), display the correct filename in the save as dialog box and allow the user to save the file through the dialog box. (In Mozilla (Mac) it will download the file (but you have to be very quick as it tends to close the "What should Mozilla do with this file?" dialog quickly if you don't select the 'save' option and click 'ok'). Safari seems to be the only browser happy to download a .jpg file onto the disk.) Any suggestions or pointers would be appreciated. |
| QUOTE Thanks | |
![]() Member Since: Jun 11, 2003
Location: Mount Vernon, WA
Posts: 4,905
![]() ![]() ![]() ![]() ![]() ![]() ![]() Mac Specs: MacBook Pro 2.6 GHz Core 2 Duo 4GB RAM OS 10.5.2
|
The quickest way would be by zipping it up or gzipping it, then output that way, since all browsers know to download a zip file or tgz file etc... I havent had to deal with that in a long time so I couldnt tell you right off the top of my head.
Also renaming the .php file that was downloaded to .jpg works.. just an extra step... ---> Join the Mac-Forums Folding team: use 37954 as your team number.View Mac-Forums Folding team statistics (More Info) Don't forget to use the User Reputation System |
| QUOTE Thanks | |
| Post Reply | New Thread | Subscribe |
| Thread Tools | |
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
|
|||||||
Thread |
Thread Starter |
Forum |
Replies |
Last Post |
| Setting up PHP and PHP Nuke | EvoMac | Web Design and Hosting | 2 | 02-18-2005 12:38 PM |
| exe file running on a Mac | chapytoutou | OS X - Operating System | 5 | 08-30-2004 12:53 PM |
| unablle to download the tar file | bonnyjoy | OS X - Development and Darwin | 1 | 10-06-2003 09:43 AM |
All times are GMT -4. The time now is 05:38 PM.
Powered by vBulletin