I have a functionality on a website in which the user logs in and then a list of files available for download is showed. When he clicks on the file, it should show a download dialog with the options for open with the application if one is installed for the filetype (like Acrobat Reader if it is installed, for example) or prompt download if it's not. Currently, I'm building the list using PHP just echoing each file's path. Then, when the user clicks on the link, the browser directly requests the file. My first problem with this was that ppsx or pptx files were displayed in the browser as plain text files, resulting on garbage-on-screen. Then I added an .htaccess file on the directory where the files to be served are, with this content:
Options All -Indexes
Header set Content-Disposition attachment
With that .htaccess file, the browser dialog appears but, for example, in Firefox, it has the option "Open with: Notepad", instead of the correct application for the file or none if there isn't an application installed for the filetype. I can see that the response header Content-Type is "text/plain" and that's wrong, but how can I make the correct Content-Type be detected by the server?
Thanks a lot.