Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
Avoiding Flash (.flv) 404 Errors on IIS 6 (Windows 2003)
Posted on 07/15/2009 at 11:11 am by Kevin Wentworth
Viewed 13,938 times | 1 comment
An interesting thing happens on Windows 2003 Server (IIS 6) when you try and play a .flv file through an embedded shockwave player...nothing. Well, actually you get a 404 error.
Fixing the .flv 404 error is simple
All you need to do is tell the IIS server that the MIME type for .flv exists. Then, the web server can send the appropriate MIME-TYPE header when needed.
Adding the .FLV MIME type to Windowss 2003 / IIS 6
You can modify the MIME type on the entire server by editing the properties for that server:
- Right-Click in IIS Admin on Computer Name
- Don't click on any of the web site names. Instead, click the parent of all web sites, indicated by the actual server name.
- Select Properties (from the right-click menu)
- Click the MIME-TYPE button in the dialogue window
- Add an extension for .flv, setting type to flv-application/octet-stream
- Run iisreset (not iisrestart) from the command prompt
I wanted to post this so I wouldn't forget. Thanks to the original author- source article.
Tags for Avoiding Flash (.flv) 404 Errors on IIS 6 (Windows 2003)
Iis | Web Server Admin | 404 Errors | Software | Iisreset
Comments for this Posting
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!
Posted by flv player
on 20/8/09
Thanks for sharing this useful post.