iis-7

HTTP Error 503.2 - Service Unavailable. The serverRuntime@appConcurrentRequestLimit setting is being exceeded

…衆ロ難τιáo~ 提交于 2020-06-24 08:32:03
问题 I have a intranet SiteCore website set up on IIS 7 which randomly throws the following error message HTTP Error 503.2 - Service Unavailable The serverRuntime@appConcurrentRequestLimit setting is being exceeded. To fix this issue, I have made following changes Increased the Queue Length of application pool myrjetAppPool from 1000 to 65535. Modified Machine.Config to increase requestQueueLimit property of ProcessModel element to 100000 Increased appConcurrentRequestLimit to 10000 by running C:

IIS and Apache (WAMP) running

北战南征 提交于 2020-06-22 11:02:40
问题 How can we run IIS 6 and Apache (wamp) in same machine at same time? 回答1: IIS and Apache should have different port. To change the port of Apache(WAMP) Click on WAMP icon that you can see on your tray or other shortcut icons for wamp. Look for the Apache and open the httpd.conf or if you know where it is stored. Find the "80" then change Listen 80 to Listen 8080 ServerName localhost:80 to ServerName localhost:8080 Note: You can change the port which you desired as long as it will not conflict

FTP Error 530 User cannot login

久未见 提交于 2020-05-25 03:58:49
问题 I am trying to FTP to a new FTP site I setup with IIS 7.0 for the Windows Server Web (64-bit) edition. But I get the above error when I try to login to this site. But I can login to my other FTP sites. Also, when I select this website from IIS Manager, the FTP section does not display in the middle section although it does display in Action panel. And I cannot successfully login to this FTP site either. I have checked and I have Log on locally selected. I do not have allow only anonymous

FTP Error 530 User cannot login

大憨熊 提交于 2020-05-25 03:58:27
问题 I am trying to FTP to a new FTP site I setup with IIS 7.0 for the Windows Server Web (64-bit) edition. But I get the above error when I try to login to this site. But I can login to my other FTP sites. Also, when I select this website from IIS Manager, the FTP section does not display in the middle section although it does display in Action panel. And I cannot successfully login to this FTP site either. I have checked and I have Log on locally selected. I do not have allow only anonymous

IIS Manager Bad Data. 0x80090005

时光总嘲笑我的痴心妄想 提交于 2020-05-12 11:16:06
问题 When I tried to set Physical Path Credentials in the Advanced Settings, I've got an error message as follows: Internet Information Services (IIS) Manager Bad Data. (Exception from HRESULT: 0x80090005) And it prevents me to set specific user to access network shared folder. Strangely, I have another server with same configuration, it works fine but this one raised the error. Any idea? 回答1: if you copied over the applicationhost.config, you need to export and import also accounts encrypted

Deny Direct Access to JavaScript Files in IIS Web Server

大憨熊 提交于 2020-04-30 12:25:46
问题 I have a web application which is in php and java script. if someone tries to enter the path of the java script file in the browser, the complete java script is being displayed in the browser. For example: http://myserver.com/MyApp/app/view/baseView.js , this returns the source code of that particular java script file. Can I restrict this ? I am using Windows IIS 7.5 Web Server. I have tried doing this in the main web.config file: <security> <authorization> <remove users="*" roles="" verbs=""

How do I configure a .net core API to work in IIS?

落花浮王杯 提交于 2020-03-30 02:01:35
问题 I've got a .net core API created in Visual Studio 2017 that's working fine. When I go to deploy it I get error message HTTP Error 500.19 with error code 0x8007000d. I've found multiple solutions online such as making sure windows features are installed, removing the .net CLR version, changing the application pool identity, changes to web.config and applicationHost.config, but nothing has worked. Is there a way to definitively find what the problem is or am I stuck doing trial and error with

How can I get information about the users network when he tries to authenticate towards my IIS?

…衆ロ難τιáo~ 提交于 2020-03-26 19:15:31
问题 I want users, when they are in the workplace (e.g. on the LAN), to authenticate themselves with their regular username and password. Auto-login is disabled. However - logging in from outside the LAN should trigger a 2-level authentication (like SMS, mail or similar). How can we get information about the users network when they try to log in to the application from outside the LAN? NB - it does not matter if you have AD user and pwd. If you are on the outside you have to trigger the 2 level

How can I exceed the 60% Memory Limit of IIS7 in ASP.NET Caching application

此生再无相见时 提交于 2020-03-21 16:06:29
问题 Pardon if this is more serverfault vs. stackoverflow. It seems to be on the border. We have an application that caches a large amount of product data for an e-commerce application using ASP.NET caching. This is a dictionary object with 65K elements, and our calculations put the object's size at ~10GB. Problem: The amount of memory the object consumes seems to be far in excess of our 10GB calculation. BIGGEST CONCERN: We can't seem to use over 60% of the 32GB in the server. What we've tried so

Why does web.config not work successfully?

China☆狼群 提交于 2020-03-05 03:22:25
问题 I have read through and tried implementing various documentation regarding '500 - internal server error'; however nothing seems to work. https://nkfaulknerandsons.co.uk/ <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <httpErrors errorMode="Detailed" /> <asp scriptErrorSentToBrowser="true"/> <rewrite> <rules> <rule name="HTTPS Rule" enabled="true" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="^OFF$" /> </conditions> <action