[SOLVED] Failed to load resources - HTML5 target

I am trying to load a small project through our webserver, but while compiling the project locally with FlashDevelop everything works ok, when I put everything in our server and load index.html I see all the graphics and animations, but no fonts and sounds.
The console report is:

http://.../test3/assets/Sound/A.ogg
Failed to load resource: the server responded with a status of 404 (Not Found)
http://.../test3/assets/Sound/B.ogg
Failed to load resource: the server responded with a status of 404 (Not Found)
http://.../test3/assets/Music/C.ogg
Failed to load resource: the server responded with a status of 404 (Not Found)
http://.../test3/assets/Fonts/D.woff
Failed to load resource: the server responded with a status of 404 (Not Found)

Why can’t it find the resources? They are exactly where it is searching for them.

EDIT: PROBLEM SOLVED
The problem was IIS server: IIS does not natively support certain file formats (extensions), in this case .OGG and .WOFF.
To fix the problem you have to choose the interested IIS site and add the specific mime type for OGG and WOFF:

“video/ogg” for OGG
“font/x-woff” for WOFF

1 Like