iis-7.5

windows authentication not working in ie7

回眸只為那壹抹淺笑 提交于 2019-11-28 06:32:47
Really need help with this and tried lots of things and run out of ideas. I have a site hosted on an internal development server, accessible for staff internally. the server setup is windows 2008 R2, iis 7.5 sql 2008 express. Im authenticating using active directory. in Chrome the site loads, and automatically logs me in recognising my name. When viewing the site in IE7 the response is: "401 - Unauthorized: Access is denied due to invalid credentials. You do not have permission to view this directory or page using the credentials that you supplied." I have tried the following: in iis set only

IIS 7 Not Serving Default Document

穿精又带淫゛_ 提交于 2019-11-28 06:25:26
We have a problem occuring on some of our developer workstations: when visiting a URL without a filename (e.g. http://localhost/ ), IIS 7 returns a 404 error . Everyone is running Windows 7/IIS 7.5 and ASP.NET 4.0. The application pool is configured to use Classic pipeline mode. Default documents are enabled, and default.aspx is in the default document list. I enabled failed request tracing, and see this in the log: OldHandlerName="", NewHandlerName="ExtensionlessUrl-ISAPI-4.0_64bit", NewHandlerModules="IsapiModule", NewHandlerScriptProcessor="C:\Windows\Microsoft.NET\Framework64\v4.0.30319

How to config application pool in IIS 7.5 automatically re-start when it was stopped?

房东的猫 提交于 2019-11-28 06:17:44
My website was down several times per day and when I check the application pool (IIS 7.5), I saw it was stopped and I must restart it manually. How can I setup application pool so that it automatically restarts after an error? You will need to change the startMode for the application pool your website is running on from onDemand to AlwaysRunning. By default IIS sets all application pools to onDemand. In IIS Manager, click computer name in the Connection pane. Switch to Features View if the view is not active. Double-click Configuration Editor in the Management section of the Features View.

ERROR 404.3 Not Found for JSON file

瘦欲@ 提交于 2019-11-28 04:49:20
I have been getting the "ERROR 404.3 Not Found" for JSON file that I am calling using AJAX call on "Internet Information Services 7.5" even after I have activated all the "Application Development Features". Other than JSON file, all other files are getting loaded. I am running an HTML page on IIS server on my local machine. If I open the file directly then there is no problem at all. When I host the files on an online server it works fine. Any quick help will be much appreciated. Is the file you try to receive in the same domain? Or do you fetch the json from another server? If it is hosted on

IIS 7.5 remove etag headers from response

*爱你&永不变心* 提交于 2019-11-28 03:50:45
I know this question has been asked alot of times, however most of them were in 2009-2010. I am pretty sure a while back a project I was working on removed them, however I cannot find any way to remove them at the moment. So has there been any advances in this field? It seems crazy that microsoft has made IIS to not be able to easily configure these headers. Currently have tried: Adding a blank etag header to the web.config Adding an etag with quotes inside to the web.config Adding a blank etag header directly through IIS Adding a custom module which removes an etag on BeginResponse Same as

How to get IIS site to start up automatically after deployment?

一个人想着一个人 提交于 2019-11-28 03:28:09
问题 I have a Web API service that I'm deploying to my various environments (using Octopus Deploy). It is supposed to do various tasks on startup, e.g. run any migration scripts required by Entity Framework Code First, and some background tasks managed by Hangfire. Trouble is, the web site only wakes up the first time someone makes a call to it. I want it to run as soon as I've deployed it. I could do it manually just by pointing a web browser at the API's home page, but that requires me to

Event Handlers Might Not Be Not Raised in a Default Document in IIS 7 or IIS 7.5 Integrated Mode?

江枫思渺然 提交于 2019-11-28 02:55:41
问题 After pulling my hair out for the last three days in my first non-upgraded ASP.NET 4.0 Web Application, I stumble across this post explaining it all. http://jai-on-asp.blogspot.com/2010/06/changes-and-differences-between-aspnet.html under the section labeled: Event Handlers Might Not Be Not Raised in a Default Document in IIS 7 or IIS 7.5 Integrated Mode Apparently, an asp.net page at this address: http://www.mydomain.com/ will not post back to itself without explicitly adding action="default

PHP 5.5.0 w/ Microsoft SQL Server 2008 R2 - No sqlsrv_connect()?

淺唱寂寞╮ 提交于 2019-11-28 02:18:41
问题 I have the following environment: Windows Server 2008 R2 IIS 7.5 Microsoft SQL Server 2008 R2 I want to use the new PHP 5.5.0 version, which works just fine per sé, but I can't connect to the MSSQL server due to the lack of current drivers. For my previous PHP 5.4.15 version, I used the official Microsoft drivers from >here<. Is there yet any possibility to connect from PHP 5.5.0? 回答1: PHP 5.5 compiled with VC11, so the driver must be compiled with VC11 too. You can download PHP SQL Server

IIS 7.5 gzip compression at shared hosting

若如初见. 提交于 2019-11-28 01:55:47
问题 I have a web-site, which uses ASP.NET and is hosted at IIS 7.5 shared hosting, so I have no direct access to IIS settings. Now I want to enable gzip compression of my pages and css/js files using IIS capabilities, but none of recipes found at the Internet worked for me. For example, when I add what is written here to my Web.config, nothing changes: no errors, no compression. Is this possible? If not, what's the best alternative? 回答1: Try the configuration sample at the bottom of this article:

Force Application Start on Azure Web Role

喜夏-厌秋 提交于 2019-11-28 00:46:40
问题 I have a web role on azure and I would like to force a Application_Start without waiting for the first request. I managed to set the "Start Automatically" property to true on my site AutoStart a WCF on Azure WebRole But the Application_Start is not called until the first request comes. I don't know exactly if I am missing something important here. The server is a W2008 R2 and the IIS version is 7.5 Thanks! SOLUTION I put the solution code here. I hope will help someone. I just added a WebRole