Just installed 7.10 on Server 2008 r2 with IIS7.
When I open the sertup page, in IE I have no images or CSS applied, I guess it's permissions but don't want to fiddle.
Any clues?
Thanks
Paul
Printable View
Just installed 7.10 on Server 2008 r2 with IIS7.
When I open the sertup page, in IE I have no images or CSS applied, I guess it's permissions but don't want to fiddle.
Any clues?
Thanks
Paul
There is a MIME type you need to remove from your web.config file. Give me a minute and I'll try and remember which one it was....
EDIT: Remove the *.svg MIME type line
Great,
That sorted it thanks for your help once again.
You're welcome. :)
No joy for me. Exact same problem. Have followed the documentation exactly. When I visit the page, it does show the setup screen but all pictures are blank (even though they are in the images folder) and the style of the page seems unstructured.
This is what I see: http://i.imgur.com/01ESA.jpg
It can only be the svg line in the web.config file
In the HAP folder in wwwroot, I've removed the following line from web.config:
<mimeMap fileExtension=".svg" mimeType="images/svg+xml" />
There's also another similar line which I have also tried removing:
<mimeMap fileExtension=".svgz" mimeType="images/svg+xml" />
After saving, the web page remains the same :(
Ok, something must be wrong with your IIS install. Can you try browsing to /hap/style/basestyle.css and see what happens
I get the following:
The page cannot be displayed because an internal server error has occurred.
I'm on IIS 8 on Server 2012 evaluation. But it seems very similar to 7 so I would think it would work. Throughout the documentation, I did get only one problem which some others have:
On step 30, "Add the permission: a. IIS AppPool\HAP (Findable from the Local Machine)"
I wasn't able to find this user on the local machine. So I used this post and this command to add the user in:
icacls C:\inetpub\wwwroot\Hap /grant "IIS AppPool\HAP":(RX)
Everything else was OK from that point.
Internal Server error is worrying since .css files are plain text. Something is wrong with your install. IIS8 hasn't been tested on by myself yet. You will need to figure out how to enable the full error message so you can see what exactly is going wrong
Thanks, just enabled the error pages, and this is what I get when visiting basestyle.css:
http://i.imgur.com/81bdm.jpg
Looks like you will need to remove a few more mimeMaps than before, 2012 must have native mp4 support. Remove the issue lines from the web.config file that that page states
Amazing! Thanks. I had to remove almost every MIME type to get it working. Am now left with just the following:
<staticContent>
<remove fileExtension=".eot" />
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
</staticContent>
You can get away with removing those lines as well