IIS Manager in Windows 10

Thanks to @SLaks comment above I was able to turn on IIS and bring the manager back. Press the Windows Key and type Windows Features, select the first entry Turn Windows Features On or Off. Make sure the box next to IIS is checked. If it is not checked, check it. This might take a … Read more

What is the difference between ‘classic’ and ‘integrated’ pipeline mode in IIS7?

Classic mode (the only mode in IIS6 and below) is a mode where IIS only works with ISAPI extensions and ISAPI filters directly. In fact, in this mode, ASP.NET is just an ISAPI extension (aspnet_isapi.dll) and an ISAPI filter (aspnet_filter.dll). IIS just treats ASP.NET as an external plugin implemented in ISAPI and works with it … Read more

How to create .pfx file from certificate and private key?

You will need to use openssl. openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt The key file is just a text file with your private key in it. If you have a root CA and intermediate certs, then include them as well using multiple -in params openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in … Read more

Error – Unable to access the IIS metabase

On Windows 8 Pro: %systemroot%\inetsrv\config On Windows 7 and 8.1 and 10 %systemroot%\System32\inetsrv\config (Where %systemroot% is usually C:\Windows) Navigate to the appropriate location above in Windows Explorer. You will be blocked access with a popup which says: “You don’t have access to this folder – Click continue to permanently get access to this folder” Click … Read more

Maximum request length exceeded.

If you are using IIS for hosting your application, then the default upload file size is 4MB. To increase it, please use this below section in your web.config – <configuration> <system.web> <httpRuntime maxRequestLength=”1048576″ /> </system.web> </configuration> For IIS7 and above, you also need to add the lines below: <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength=”1073741824″ /> </requestFiltering> … Read more

Config Error: This configuration section cannot be used at this path

I had the same problem. Don’t remember where I found it on the web, but here is what I did: Click “Start button” in the search box, enter “Turn windows features on or off” in the features window, Click: “Internet Information Services” Click: “World Wide Web Services” Click: “Application Development Features” Check (enable) the features. … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)