iis-7.5

Trying to add IIS_IUSRS to Administrators group [closed]

拥有回忆 提交于 2019-12-11 08:38:16
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . When I bring up the AD Groups via Computer->Manage->Local Users and Groups, I can see IIS_IUSRS in the list, so I click on the Properties of the Administrators group, then click Add...select the Location to by my local computer, make sure the Object Types has "Built-in security principals" is checked, and I

How do you determine cookies are disabled *without* javascript and *without* redirecting?

孤者浪人 提交于 2019-12-11 08:15:52
问题 If I disable javascript and cookies, Amazon.com detects that cookies are disabled without a redirect. If you click the cart link, there's only a get on the cart page. I'm guessing amazon.com is most likely not using ASP.NET, but how would you accomplish detecting disabled cookies using ASP.NET without the use of javascript and redirecting? Is it possible to detect if cookies are disabled in one round trip? 回答1: I believe what you're describing is impossible. Amazon doesn't appear to do that.

IIS 7.5 ISAPI Application Pool Security

谁都会走 提交于 2019-12-11 08:15:49
问题 I'm running an ISAPI dll under IIS 7.5, and wish to use Bill Egge's ISAPI Loader dll so an updated dll can be swapped out without stopping the server. If I set the security on the directory holding the DLL to "everyone" with "full control" then it works as designed (a dll with an *.update extension automatically causes the existing *.run dll to be backed up, and the new dll to be renamed with the *.run extension). Obviously I do not wish to use the "everyone" account as this blows the

The directory or file specified does not exist on the Web server

心不动则不痛 提交于 2019-12-11 08:09:19
问题 I have a hybrid asp.net web forms / mvc application that I recently converted to .net 4 with mvc2. I have set-up that application to run on IIS 7.5 (on Windows 7) and the web forms part of the site is running okay but the MVC part is not. Whenever I try and access a page that needs to go through the routing engine I get HTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its name changed, or is temporarily unavailable. Module IIS Web Core Notification

ASP MVC 4.x+: Recompile project every time - how to fix?

徘徊边缘 提交于 2019-12-11 07:58:02
问题 we have a solution converted to ASP MVC, which is growing bigger and bigger. The problem now is: The startup of the application takes around 15+ seconds, because the application needs to pre-cache a lot of stuff from a database. Now, in ASP MVC the problem is, every time we change something in a controller, the whole app is shut down and restartet, all the stuff in global.asax is executed again (as if the app comes from a "cold start" Imagine: You write a simple if-condition, by accident you

Windows Server 2008, IIS7.5 and connection to MS Access 97 database

时光怂恿深爱的人放手 提交于 2019-12-11 07:56:01
问题 I know, the topic sounds terrible. But I actually have to connect these technologies. Problem I am currently migrating company's intranet (written mostly in classic ASP) from Windows Server 2003 32 bit with IIS 6 to Windows Server 2008 R2 64 bit with IIS 7.5. Everything works perfectly fine except for one subpage which uses set conn = server.createobject("adodb.connection") to connect to connstring="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=path\to\mdb\which\is\really\there" . I open

The FastCGI process exceeded configured request timeout - Shared Hosting

折月煮酒 提交于 2019-12-11 06:44:31
问题 I'm writing a wordpress plugin which do some time consuming XML file processing in the background. On my machine, it takes at least an hour. It doesn't consume at lot of CPU%, but it's just slow. When I test on my windows based shared hosting, I'm getting "The FastCGI process exceeded configured request timeout". PHP of the hosting is not running in safe_mode. From much searching, I realized that calling set_time_out() does not work when running as CGI under IIS. IIS impose another time limit

Caching Application Block crashing IIS

一世执手 提交于 2019-12-11 06:27:33
问题 I'm having an issue with my Dev environment where any calls to the Caching Application Block's CacheFactory cause IIS to crash. I've created a very simple web application that causes IIS to crash every time I try to run it, but yet the application works fine under the Visual Studio.NET web server. The following code is what causes the application to crash when running under IIS: protected void Page_Load(object sender, EventArgs e) { try { ICacheManager cm = CacheFactory.GetCacheManager("foo")

Login Failed for user Domain\MachineName$ on IIS 7.5 with an ApplicationPoolIdentity

南笙酒味 提交于 2019-12-11 06:09:29
问题 Actually I was expecting a SqlExcpetion like Login Failed for user IIS AppPool\My AppPool Name exception instead of Domain\MachineName$ . I've created an Application Pool that is using Manged Pipeline Mode : Integrated Identity : ApplicationPoolIdentity This AppPool is assigned to the Web Application (MVC3) in question. But somehow it seems that the WebApp is using somehow the NetworkService for the connection to SqlServer. Any Idea why or what I should change? 回答1: Turns out that I forgot to

404 does not append aspxerrorpath for non aspx pages

懵懂的女人 提交于 2019-12-11 05:50:01
问题 i am using ELMAH to log errors, it works fine for pages with aspx, i.e. eroordfs.aspx but when it has a non aspx extension or no extension, my error page loads with no aspxerrorpath in the url, i think this is the reason that elmah is not logging the error. i am using iis7.5 my web.config details are as follows: <httpErrors errorMode="Custom"> <remove statusCode="500" subStatusCode="-1" /> <remove statusCode="404" subStatusCode="-1" /> <error statusCode="404" subStatusCode="-1"