This is my site kiranraje.in, i have big probleme, when im going to download any file frm pc it get download, and when i downld it frm mobile then it not get download, which code have to use, plz help me
Help Me Plz
Collapse
X
-
(copy-paste)
Here is a useful method for delivering multimedia file downloads to your users. Typically, browsers will attempt to play or stream such files when direct links are clicked. With this method, provide a link to a multimedia file and a dialogue box will provide users the choice of saving the file or opening it. Here are a few htaccess rules demonstrating the technique (edit file types according to your specific needs):
# instruct browser to download multimedia files
AddType application/octet-stream .avi
AddType application/octet-stream .mpg
AddType application/octet-stream .wmv
AddType application/octet-stream .mp3<!DOCTYPE html PUBLIC "-//WAPFORUM.RS
Comment
-
Originally posted by frostymarvelous View PostI use this in my downloads folder htaccess
<Files * .*>
ForceType application/octet-stream
</Files>
Will force all files to be downloaded. No matter the extension.
Comment
-
Ah! So that's why opera mini shows my text huh? Thanks.
Added after 11 minutes:
Mobitalk just use arnages solution. I thought mine would be simpler but hey, you gotta manually so them. Lol.
Gumslone, can't wildcards be used with that solution?Last edited by frostymarvelous; 09.01.11, 08:12.Perfection comes at a cost
I accept liberty!
Comment
Comment