I've got problems when I deployed my mvc website with IIS 7.5.
On my solution in VS 2008, I published web to an specified folder. Then I go IIS version 7.5 create a virtual directory to my published folder then convert it to web application.
When I run it http://localhost/myMVC my flash can't specified file , when I type http://localhost/myMVC/ it's run properly. But I don't really understand that I have to use path in my flash
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24"
width="980" height="421">
**<param name="movie" value="Content/Skin/flash/header_v8.swf" />**
<param name="quality" value="high" />
<param name="menu" value="false" />
instead **<param name="movie" value="/Content/Skin/flash/header_v8.swf" />**.
For FCK editor, I've already configured correctly on my web.config when I run on VS 2008 http://localhost:portnumber/home/cms/
<appSettings>
<add key="FCKBasePath" value="/Content/FCK/" />
<add key="FCKUserFilesPath" value="/Content/UserFiles/" />
</appSettings>
But when I published on IIS 7.5 it wasn't understand the physical path that I was configured.
Could anybody help me?
Thanks in advance.