Common errors faced while hosting ASP.NET site through IIS (Internet Information Services)

[1] “HTTP Error 403.14 — Forbidden” error
Solution 1:
https://support.microsoft.com/en-us/kb/942062

(OR)

Solution 2:
Open command prompt (run as administrator)

[2] Handler “PageHandlerFactory-Integrated” has a bad module “ManagedPipelineHandler” in its module list
Solution:
http://stackoverflow.com/questions/6846544/how-to-fix-handler-pagehandlerfactory-integrated-has-a-bad-module-managedpip

[3] HTTP Error 404.7 — Not Found The request filtering module is configured to deny the file extension
Solution:
http://stackoverflow.com/questions/13455939/http-error-404-7-not-found-the-request-filtering-module-is-configured-to-deny
(OR)
Check application pool config
http://stackoverflow.com/questions/4890245/how-to-add-asp-net-4-0-as-application-pool-on-iis-7-windows-7

[4] Could not load file or assembly
Solution:
http://www.alexjamesbrown.com/blog/development/could-not-load-file-or-assembly-chilkatdotnet2-or-one-of-its-dependencies-an-attempt-was-made-to-load-a-program-with-an-incorrect-format/

[5] Could not load type ‘System.ServiceModel.Activation.HttpModule’ from assembly ‘System.ServiceModel
Solution:
Step 1 — http://stackoverflow.com/questions/6846544/how-to-fix-handler-pagehandlerfactory-integrated-has-a-bad-module-managedpip
Step 2 (optional) — iisreset
Now, reload it.

[6] The request filtering module is configured to deny a path in the URL that contains a hidden Segment section
Solution:
http://stackoverflow.com/questions/14059355/how-do-i-resolve-http-error-404-8

Published on: 28–02–2016
Last updated (1): 20–03–2016
Last updated (2): 21–03–2016

Leave a Reply