html - I cannot download certain file types from website. In particular .frm, .frx, .mgf. Getting HTTP 404 error -
html - I cannot download certain file types from website. In particular .frm, .frx, .mgf. Getting HTTP 404 error -
i cannot download file types website. in particular .frm, .frx, .mgf. getting error: http error 404 - file or directory not found. added these file types in iis local, did not help. can add together kind of code webpage allow downloading of such files?
all need done on website hosting server, not on downloading computer. daaahhh. create sure hosting business relationship switched iis7.
web.config file need created (can done in notepad) , placed in root directory of website.
web.config file allowing download of .mgf files:
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webserver> <staticcontent> <mimemap fileextension=".mgf" mimetype="text/plain" /> </staticcontent> </system.webserver> </configuration>
html browser
Comments
Post a Comment