iis-10

DebugDiag Analysis hangs while “Dumping Thread Data”

試著忘記壹切 提交于 2020-06-29 04:06:50
问题 I'm trying to run DebugDiag Analysis (v2.3) on my Windows 10 laptop using crash-dump files generated from a w3wp.exe process on a Windows Server 2016 box... but the application never passes "Dumping Thread Data" (the progress animation continues, so it's not a GUI hang.) (I am not allowed to installed DebugDiag on the server, as it is production box and owned by a client. They allowed me to change the registry settings to generate the crash-dump files, which I then copied to my local machine.

DebugDiag Analysis hangs while “Dumping Thread Data”

此生再无相见时 提交于 2020-06-29 04:06:10
问题 I'm trying to run DebugDiag Analysis (v2.3) on my Windows 10 laptop using crash-dump files generated from a w3wp.exe process on a Windows Server 2016 box... but the application never passes "Dumping Thread Data" (the progress animation continues, so it's not a GUI hang.) (I am not allowed to installed DebugDiag on the server, as it is production box and owned by a client. They allowed me to change the registry settings to generate the crash-dump files, which I then copied to my local machine.

Error 404.4 The resource you are looking for does not have a handler associated with it

旧城冷巷雨未停 提交于 2020-06-27 11:54:25
问题 HTTP Error 404.4 - Not Found The resource you are looking for does not have a handler associated with it. web.config <configuration> <system.webServer> <rewrite> <rules> <clear /> <rule name="ReverseProxyInboundRule1" stopProcessing="true"> <match url="(.*)" /> <action type="Rewrite" url="http://localhost:3000/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </location> </configuration> I want to redirect mywebsite.com to http://localhost:3000 mywebsite.com is in iis and host file

Unable to load dynamic library 'php_wincache.dll' (updated question)

老子叫甜甜 提交于 2020-06-17 13:13:53
问题 I have installed wincache. i followed the link and installed wincache.dll. the link is given below. Unable to load dynamic library 'php_wincache.dll'? Before installation the error was. "[03-Jun-2020 12:00:44 UTC] PHP Warning: PHP Startup: Unable to load dynamic library 'php_wincache.dll' (tried: C:\PHP\ext\php_wincache.dll (The specified module could not be found.), C:\PHP\ext\php_php_wincache.dll.dll (The specified module could not be found.)) in Unknown on line 0" After Installation iam

My ASP.NET Core app says it can't read web.config

主宰稳场 提交于 2020-06-14 05:26:49
问题 I get this error when I access my app which I published to local IIS: HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. My web.config is really simple: <?xml version="1.0" encoding="utf-8"?> <configuration> <location path="." inheritInChildApplications="false"> <system.webServer> <handlers> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" /> </handlers>

IIS reverse proxy - 2 subdomain to 2 Node.js

依然范特西╮ 提交于 2020-04-30 06:32:13
问题 As in this blog is well explained how to point a domain or subdomain in IIS to a Node.js project. In this case its needed to have two subdomains each point to a Node.js project (localhost:port) in the example works well for one project but not for two. So in this case its needed for subdomain1 point to localhost:80 and subdomain2 point to localhost:82 for example. In the reverse proxy have: in the pattern had (.*) but that would match any and my subdomains would point to same Node.js project.

ASP.NET returns HTTP 500 instead of 404

喜欢而已 提交于 2020-04-27 07:32:18
问题 For some reason, my ASP.NET web application returns error 500 (apparently originating from handler "ExtensionlessUrlHandler-Integrated-4.0") when a non-existing route is accessed. This issue has started to occur after I had changed path="*." to path="*" in the <add name="ExtensionlessUrlHandler-Integrated-4.0" ... line of my Web.config file in order to solve another problem (failure to process routes with a dot after the last slash). I cannot change path back to "*." , even though exactly

ASP.NET returns HTTP 500 instead of 404

隐身守侯 提交于 2020-04-27 07:31:02
问题 For some reason, my ASP.NET web application returns error 500 (apparently originating from handler "ExtensionlessUrlHandler-Integrated-4.0") when a non-existing route is accessed. This issue has started to occur after I had changed path="*." to path="*" in the <add name="ExtensionlessUrlHandler-Integrated-4.0" ... line of my Web.config file in order to solve another problem (failure to process routes with a dot after the last slash). I cannot change path back to "*." , even though exactly

ASP.NET returns HTTP 500 instead of 404

天大地大妈咪最大 提交于 2020-04-27 07:28:57
问题 For some reason, my ASP.NET web application returns error 500 (apparently originating from handler "ExtensionlessUrlHandler-Integrated-4.0") when a non-existing route is accessed. This issue has started to occur after I had changed path="*." to path="*" in the <add name="ExtensionlessUrlHandler-Integrated-4.0" ... line of my Web.config file in order to solve another problem (failure to process routes with a dot after the last slash). I cannot change path back to "*." , even though exactly