Posted by: trax - Wednesday, 28 August 2013 11:10:30 |
---|
I am trying to find out why i can not get my forum to work without www. infront of our domainname?
If i go to our www version it works but if i go with either our https or regular http it doesnt work. It just shows a blank page with nothing on it.
www.nordicfuzzcon.org/forum - works
http://nordicfuzzcon.org/forum - does not work
https://nordicfuzzcon.org/forum - does not work
I have set the following but it still doesn't work with http/https.:
|
Posted by: squirrel - Wednesday, 28 August 2013 12:01:39 |
---|
What do you mean does not work? What error do you get? Do you get anything at all? |
Posted by: trax - Wednesday, 28 August 2013 14:30:35 |
---|
[quote=squirrel;60870]What do you mean does not work? What error do you get? Do you get anything at all? [/quote] It just shows me a blank white page. If i do "View page source" it's completely blank, not even a -tag or anything. Also no error messages are recorded in the global.asax and no redirect to any error page. It just shows a blank white page. |
Posted by: squirrel - Wednesday, 28 August 2013 21:33:06 |
---|
You need to check your server configuration. Either DNS is not pointing properly or host headers in IIS are most likely not configured properly. Additionally, if serving using SSL (https) you have to have a certificate installed on the server and on an IP for just that site and certificate. otherwise, that SSL won't be right. Try getting it to run under all host headers under standard HTTP first - then worry about SSL... |
Posted by: trax - Thursday, 29 August 2013 10:52:29 |
---|
[quote=squirrel;60881]You need to check your server configuration. Either DNS is not pointing properly or host headers in IIS are most likely not configured properly. Additionally, if serving using SSL (https) you have to have a certificate installed on the server and on an IP for just that site and certificate. otherwise, that SSL won't be right. Try getting it to run under all host headers under standard HTTP first - then worry about SSL... [/quote] But the webpage itself shows up if i remove the www. (Both http:// and https:// works without www.) Shouldn't the entire webpage be affected by the IIS headers? Btw. the rest of the site is running .NET 4.5 MVC. http://nordicfuzzcon.org - works http://nordicfuzzcon.org/forum - doesn't work ?? <---- http://www.nordicfuzzcon.org - works http://www.nordicfuzzcon.org/forum - works |
Posted by: squirrel - Thursday, 29 August 2013 23:08:30 |
---|
If you remove www then your server displays 0 output from the forum folder. Something is mis-configured in IIS if removing a subdomain pointer crashes the site (or part of it)... Determining whether or not to respond to a web URL that has a subdomain (www) or not is at the IIS server level. Either your web.config from your .NET 4.5 application is stomping on the YAF configuration or your YAF is not properly configured. You may try isolating the YAF application into it's own pool and assigning it an ASP.NET 4.0 pool. YAF is not MVC compatible as far as I know. Even this scenario is an IIS configuration issue -- |