Description:
An unhandled exception occurred during the execution of the current web
request. Please review the stack trace for more information about the error and
where it originated in the code.
Exception Details:
System.InvalidOperationException: The WebResource.axd handler must be
registered in the configuration to process this request.
The source code that generated this unhandled exception can only be
shown when compiled in debug mode. To enable this, please follow one of the
below steps, then request the URL:
1. Add a "Debug=true" directive at the
top of the file that generated the error. Example:
<%@ Page
Language="C#" Debug="true" %>
or:
2) Add the following section
to the configuration file of your
application:
Note
that this second technique will cause all files within a given application to be
compiled in debug mode. The first technique will cause only that particular file
to be compiled in debug mode.
Important: Running applications in debug
mode does incur a memory/performance overhead. You should make sure that an
application has debugging disabled before deploying into production
scenario.
Stack Trace:
[InvalidOperationException: The WebResource.axd handler must be registered in the configuration to process this request.
Thanks for replying Jan. I managed to get it working by adding
<add name="WebResource" path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader"/> This bit of code recommended by my web host.
Server Error in '/' Application
Dear Our Umbro,
Sorry folks I'm a newbie to Umbraco and I'm struggling to get it working on a remote server. So please type slowly ;0)
Recently uploaded an Umbraco CMS website I'd built locally.
Had some trouble with the server but eventually got the website up. www.maisonmima.co.uk. after upgrading to .NET 4.
Problem now is that I can't log in to the CMS.
Any advice, hugely appreciated.
Server Error in '/' Application.
The WebResource.axd handler must be registered in the configuration to process this request.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<httpHandlers>
<add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" />
</httpHandlers>
</system.web>
</configuration>
Exception Details: System.InvalidOperationException: The WebResource.axd handler must be registered in the configuration to process this request.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<httpHandlers>
<add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" />
</httpHandlers>
</system.web>
</configuration>
Source Error:
The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
<%@ Page Language="C#" Debug="true" %>
or:
2) Add the following section to the configuration file of your application:
<configuration>
<system.web>
<compilation debug="true"/>
</system.web>
</configuration>
Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
Stack Trace:
Hi Jason
How did you deploy your local site? Did you copy the files using FTP or did you use webmatrix or something like that?
Could you please describe the steps you took for getting it from your local machine to the server?
/Jan
Thanks for replying Jan. I managed to get it working by adding
<add name="WebResource" path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader"/>
This bit of code recommended by my web host.
Hi Jason
Good to hear that. And thanks for sharing the solution :-)
Happy umbraco'ing.
/Jan
Hey good for everyone, who is of interest I am installing umbraco 8 in azure and I ran it and I get this error ...
is working on a reply...