-
Posted to
IIS7 - Classic ASP
by
millsmg
on
04-29-2009, 3:09 PM
I have a site that I am using cookies to manage the login and subsequent data accessibility. The problem is that once I upload the files to GoDaddy the cookies break.
I used Fiddler to see where they broke but for the life of me cant figure out why, other than possible cookie handling differences between GoDaddy's IIS7 and my test servers ...
-
Posted to
IIS7 - General
by
millsmg
on
04-24-2009, 12:37 PM
I also use GoDaddy and have been going crazy because everything would work on my test server but then break once uploaded. I finally got the web.config to work and here it is.
Either add this to your existing web.config, or create a new one. I have it in the directory of files I am troubleshooting. Not sure if it makes a ...
-
Posted to
IIS7 - General
by
millsmg
on
04-24-2009, 12:29 PM
If you are having a hard time getting the details of the 500 error use this code in your web.config file.
<configuration>
<system.webServer>
<asp scriptErrorSentToBrowser="true"/>
<httpErrors errorMode="Detailed"/>
</system.webServer>
</configuration>