Windows server 2012 R2
Classic ASP + PHP
Used to be ok, but recently the problem appeared
We are getting intermittent (every 3rd or 5th request) fails with 401 2 64 error.
Tried disabling windows auth, but still the same.
Does not seem to be affected by browser choice.
Sometimes it cures itself but then comes back.
Please help if you have any ideas!
Thank you!
Related
I recently upgraded one of our application servers from Server 2008 R2 to Server 2012 R2. Everything seems to be working fine except for our little Intranet. When trying to get to it, you are immediately greeted with Error 503 Service is unavailable.
I did some troubleshooting but nothing has seemed to helped. I made sure the app pool associated with the website is running and double checked the identity. (It's using ApplicaionPoolIdentity). What else can I try? Thanks all!
It turns out the the application pool that our intranet runs from was set to use .NET CLR Version 1.1 instead of version 2.0. After switching to version 2.0 and recycling/refreshing the site, the intranet came right up. Thanks all!
I am facing one issue. Deployed my application on IIS 7.5 with windows 2009 R2. My observation is when I request page for the first time, IIS takes lots of time to render (which is understood as it is initialising the application). While this is going on of another user tries to use the website, they are getting time out. How do I improve it? Needs help you guys.
Thanks in advance.
Cheers,
Kiran
For IIS 7.5 - on Windows Server 2008 R2, not 2009... - have a look at the Application Initialization Module. Or better, upgrade to IIS 8.5 on Windows Server 2012 R2 (if possible), where it's built in.
I am using visual studio 2013. I am trying to run a web app on my browser and I get the following error.
I have searched this forum but is not working. I was running the same web app yesterday and it worked fine.Today it does not.
Thank you for your help
I too faced this problem when my Windows was upgraded.
Doing this fixed the issue on my computer. Also note that you have to select the Server node on the left side panel. (NOT a web site).
Follow the instructions in the screenshots and then
Uncheck the www server checkbox.
Restart the IIS and it worked on my machine!
I was also facing similar issue from last 2-3 days. I am using VS2013 professional for building MVC application. All of sudden, any web application created on VS2013 started giving this kind of error. I tried reinstalling IIS, VS2013; but it does not worked for me.
During event logs checks, I found this error message-
"FailedRequestTracing module detected invalid configuration on path 'MACHINE/WEBROOT/APPHOST'. Trace provider or tracing area name 'WWW Server' is not recognized. Check the section for currently supported list or providers and areas. No logs will be generated until this condition is corrected. The problem happened at least 1 times in the last 5 minutes. The data is the error."
In applicationhost.config file, I did found below tag-
<add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI,WebSocket,Rewrite,RequestRouting,iisnode" verbosity="Verbose" />
I removed this tag from applicationhost.config file located under C:\Users\\My Documents\IISExpress\config path on windows 7 machine.
Now my all application started running fine from VS2013 with IISexpress.
See if this helps.
Cheers
Sanket
Today I upgraded my windows 7 ultimate to windows 10 pro. Every thing seems to work fine. But the localhost is now throwing error : HTTP Error 503. The service is unavailable.
I checked IIS, it is running. I checked the version of IIS from IIS Manager, it is showing Version 10.0.10240.16384.
I test my sites on localhost.
Before upgrade, in windows 7 ultimate it was working fine. I also checked "Turn windows feature on or off" and found that IIS is installed properly.
Please guide me.
Thanks Joe Raio for providing the hint. I checked the event log and found that rewrite.dll was causing error. I uninstalled IIS URL rewrite extension and the problem is gone. Now everything is working as before, classic asp, php, everything.
Please try this solution
Go to the Application Pool ...
Advanced Settings ...
Process Model ...
Identity ...
Set it to "LocalSystem"
I have a few ASP pages. One of them is using Server.Transfer to load another ASP page. But the page does not get called. If I change it to Response.Redirect, it is working fine. Can anyone help me?
By the way, it is working fine on IIS 6 on Windows Server 2003. It only has problem when I moved to IIS 7 on Windows Server 2008.
Thanks
transfer can only support within same domain...
Try changing your code from Server.Transfer to Server.TransferRequest.
I have found this works for IIS 7 applications running in Integrated Mode.