IIS HTTP Error 500.19 - Internal Server Error - asp.net

I recently had to reformat my laptop and ever since I did I can't get IIS to work correctly. Ive given it all the same permissions it needs. I set it up the same way I did before the reformat, which is why I'm so confused that I can't get it wo rking.
When running my asp .net page, I get the follow error
IIS HTTP Error 500.19 - Internal Server Error
Error Code - 0x800700b7
Config Source:
14 <files>
15: <add value="index.aspx" />
16: </files>
When I comment out those 3 lines in my Web.config file I get a different 404 error
HTTP Error 404.3 - Not Found
Here is a screenshot of the original error
I have defined the index.aspx as the default document. However, I'm still getting a 404 error. WHen i try to right click and browse the site, I get a 404 which makes me think the index.aspx file isnt in the right location. But Its in the root and I can verify the by 'right clicking' and 'explore'
Here is a screen shot to show what I'm talking about

Go to IIS Manager, select your website on the left, and find the "Default Document" :
---------------------------------------------------------------------------------------
there you can add pages that will run DIRECTLY from the root folder of the website.
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
if you want your start page to be located in a folder, you need to create one of the files above in the root folder of the website, and redirect onload to your custom start page
---------------------------------------------------------------------------------------

Related

Strange issue with wordpress - critical error but nothing in debug.log

I have just put some changes to a wordpress theme live, it all works on the staging server but for some reason it's giving a critical error on the live site.
As normal i go and look at the debug.log file and there is no fatal error is showing in that file, and no error_log is showing it either.
Any ideas on why it's not recording the fatal error (usually that is what causes the wordpress critical error)
Probably, the "fatal error" you're talking about occurred before WordPress was initialized. For example, if the code, that triggers the error is located in index.php of your active theme.
In this case, try to find error messages not in wp-content/debug.log, but in webserver logs folder /var/log/httpd/error_log/ or /var/log/apache2/error.log

Error Code 0x80070021 HTTP Error 500.19 - Internal Server Error

I trying to configure IIS but when I run the project this error appeared : Error Code 0x80070021 HTTP Error 500.19 - Internal Server Error
May I know the cause and solution for this?
This is example of TraceLogFiles
There was an error while performing this operation.
This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault=”Deny”), or set explicitly by a location tag with overrideMode=”Deny” or the legacy allowOverride=”false”.
Cause:
This problem can occur if the specified portion of the IIS configuration file is locked at a higher configuration level.
Resolution:
You can first modify the attribute of allowOverride according to the error message in frt.
Open %SystemRoot%\System32\inetsrv\config\applicationHost.config
Search for the statements below and change the allowOverride attribute from Deny to Allow
<section name="handlers" allowOverride="Deny" />
<section name="modules" allowOverride="Deny" />
Restart IIS
If the above method does not work, you can unlock the specified section, or don't use it at the higher level. For more information about configuration locking, see How to Use Locking in IIS 7.0 Configuration.

Xampp + Wordpress, Error 500 .htaccess

I'm trying to host a local WordPress site on my machine using Xampp.
I got everything working, I can get on the site etc. However I can't change the Permalinks without editing the .htaccess, and here lies my problem.
I've removed the "#" in front of the "Load rewrite" module in Xampp, and also changed the "AllowOverride All".
If I add in my own .htaccess file into the WordPress root (Xampp/htdocs/mysite/.htaccess) then the error comes up, otherwise it doesn't. I have hidden files visible yet I can't see a .htaccess file there, even adding a blank one breaks it.
Error from webpage:
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.
Error form Apache Error Log:
[Fri May 16 13:45:48.885862 2014] [core:alert] [pid 18435] [client ::1:54974] /Applications/XAMPP/xamppfiles/htdocs/PMD-new/.htaccess: Invalid command '{\\rtf1\\ansi\\ansicpg1252\\cocoartf1038\\cocoasubrtf360', perhaps misspelled or defined by a module not included in the server configuration, referer: http://localhost/PMD-new/wp-admin/options-permalink.php?settings-updated=true
.htaccess File:
http://pastebin.com/vb3zScdx
When I remove the .htaccess file it works fine, but I can't change the permalinks.
I'm new when it comes to this so any help is appreciated.

Windows Azure and GitHub: build error on web.config

I've created a new ASP.NET MVC 4 project using the HotTowel SPA template. I haven't changed very much as you can see in my GitHub repository. I've set up Windows Azure to take in the changes and deploy to hourlee.azurewebsites.net, but nothing happened.
When I check my dashboard, it seems something went wrong. Windows Azure is complaining about an error in my Web.Release.config file.
More specifically, this is the error message:
D:\home\site\repository\Hourly\Web.Release.config(1,1): error : Data at the root level is invalid. Line 1, position 1. [D:\home\site\repository\Hourly\Hourly.csproj]
Failed exitCode=1, command="D:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" "D:\home\site\repository\Hourly\Hourly.csproj" /nologo /verbosity:m /t:Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="C:\DWASFiles\Sites\hourlee\Temp\208c4975-46bc-4f4f-89d8-6ae54a5289d8";AutoParameterizationWebConfigConnectionStrings=false;Configuration=Release /p:SolutionDir="D:\home\site\repository\.\\"
An error has occurred during web site deployment.
It's repeated again (the entire message is longer).
I haven't changed anything in the web.config files and the whole thing builds and runs locally too.
I've noticed that it works when I remove the transform file (web.Debug.config and web.Release.config).

Parser Error Message: Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive

I have just uploaded my website on a hosting site.
I get the following error while I try to access my site.
Server Error in '/' Application.
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive.
Line 7:<system.web>
Line 8:<customErrors mode="Off"/>
Line 9:<compilation debug="true" targetFramework="4.0">
Please help,
Thank You
Parth.
This normally happens when your application pool in IIS is set to 2.0 instead of 4.0
For convenience of others, go to control panel -> Admin tools -> IIS Manager -> View Application Pool -> Change .NET version from 2.0 to 4.0

Resources