-
Posted to
IIS7 - UI & Remote Management
by
diholaiis
on
11-23-2009, 12:31 PM
Thanks, that worked!
-
Posted to
IIS7 - UI & Remote Management
by
diholaiis
on
11-19-2009, 6:26 AM
Hi all,
I issued a certificate request and when I received it form GoDaddy, I ent to IIS and followed the Complete Certificate Request wizard. It all went well but noticed a typo in the "Name" field that IIS allows you to enter. Not being able to edit it, I removed the certificate from IIS (silly me) hoping to repeat the process again, ...
-
Posted to
IIS7 - Security
by
diholaiis
on
09-30-2009, 7:07 AM
How is your website set up in web.config, something like this:?
<authentication mode="Forms">
<forms name=".mywebsite" loginUrl="~/Login.aspx" defaultUrl="~/Default.aspx" ...
-
Posted to
IIS7 - Security
by
diholaiis
on
09-23-2009, 6:50 AM
There are ways to detect whether cookies are enabled or not, but I have never implemented them.
I guess I have been lucky so far because I have been able to just tell visitors that they need cookies, else the site won't work. If you can't force your users to use cookies, then you will need
to find a way to work without them (maybe by ...
-
Posted to
IIS7 - Security
by
diholaiis
on
09-23-2009, 6:37 AM
Unless you are sending the session id as part of the url, you do need the browser to store the cookies, otherwise it doesn't know what session id you are using. Check the IE's configuration to see if it's accepting cookies. Another way to see teh cookies is by installing the IE's Developer Toolbar, which has options to view ...
-
Posted to
IIS7 - Security
by
diholaiis
on
09-23-2009, 6:07 AM
The underscores in the page names shouldn't be a problem. Is IE6 accepting cookies?
-
Posted to
IIS7 - General
by
diholaiis
on
03-19-2009, 2:17 PM
All resolved. IIS was not showing the correct information after I gave it a good restart.
Thanks
-
Posted to
IIS7 - General
by
diholaiis
on
03-19-2009, 1:58 PM
Hi all,
I am running Windows Server 2008 x64 with IIS7. A certificate expired and I am trying to renew it.
I was getting an error saying something like ASN1 bad tag value met. 0x8009310b
I followed the instructions in ...
-
Posted to
IIS7 - URL Rewrite Module
by
diholaiis
on
11-13-2008, 10:00 AM
Hi all, I need some help with these rewrite rules. I am trying to force access to my site always with www and https. I have these 2 rules:
<rewrite>
<rules>
<clear />
<rule name="Add WWW" enabled="true">
<match ...
-
Posted to
IIS7 - URL Rewrite Module
by
diholaiis
on
11-13-2008, 9:57 AM
Something like this?
<rewrite>
<rules>
<clear />
<rule name="Force HTTPS" enabled="true">
<match url="(.*)" ignoreCase="false" ...