If you have questions about using mojoPortal, you can post them here.
You may want to first review our site administration documentation to see if your question is answered there.
Hello!
We've made a childpage and added succesfully a certificate. The childpage is a subdomain. We need the certificate for all pages in subdomain. The administration (https://subdomain.domain.com/Admin/...) works fine. But URLs like https://subdomain.domain.com/default.aspx are redirecting to http://subdomain.domain.com/default.aspx (without any SSL).
It seems, that the redirection manager or the URL-Mapping isn't correct. Can anybody help us?
Thanks so far.Edit: Uups, forgotton: Using IIS 7.5, SQL Server 2008 and the latest Mojoportal ;)
Got to Site Settings and check the box for "Require SSL on All Pages"
Hope that helps,
Joe
Hi Joe,
really fine! The childpage (siteid 2) under https://subdomain.domin.com work perfect now. But yet the root pages admin (siteid 1) under https://www.domain.com/admin/... doesn't work. It has no SSL-Certificate and gets an 404-Error.
How can I say, that the <add key="SSLIsAvailable" value="true"/> is only available for site id 2?
Change this:
<add key="SSLIsAvailable" value="true"/>
to this:
<add key=Site2-"SSLIsAvailable" value="true"/>
after correcting the " in this line to <add key="Site2-SSLIsAvailable" value="true"/> everything works perfect.
Many thanks! You rescued my evening
Bye for now,
Stephan!