Search In
Learn from 350 other Umbracians at the annual Umbraco Conference - CodeGarden '13. More than twenty high quality sessions, open spaces, hackathons and social events you'll remember. Not to be missed! Less than 45 tickets left - get yours now!
Had the exact same issue. Umbraco v4.6.1 worked for a few hours after install on softsys. Then suddenly the backend stopped working. Turning off integrated pipeline as explained above solved the problem.
Same solution worked for me with 4.7, turning off Integrated Pipeline mode. Any idea why this is? I'd like to find the reason for this problem...
Amir,
You could try putting this in your web.config to make sure it is full trust mode:
<location path="yoursitename.com" allowOverride="true"> <system.web> <trust level="Full" originUrl="" /> </system.web> </location>
Also, try giving full permission to the whole website.
Cheers
Paul
I had the same error but the post marked as the solution in this thread didn't cut it for me. I've had this problem two times now and this blog post had the solution. blog.dampee.be/.../...ue-on-IIS7-(SOLVED).aspx
It tells you to update your web.config with the following right after the handlers tag inside the system.webserver tag:
<handlers accessPolicy="Read, Write, Script, Execute"> <remove name="WebServiceHandlerFactory-Integrated" /> <remove name="ScriptHandlerFactory" /> <remove name="ScriptHandlerFactoryAppServices" /> <remove name="ScriptResource" /> <remove name="Channels" /> <remove name="Channels_Word" /> <remove name="ClientDependency" /> <remove name="SpellChecker" /> <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> <add name="ScriptResource" verb="GET,HEAD" path="ScriptResource.axd" preCondition="integratedMode" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> <add verb="*" name="Channels" preCondition="integratedMode" path="umbraco/channels.aspx" type="umbraco.presentation.channels.api, umbraco" /> <add verb="*" name="Channels_Word" preCondition="integratedMode" path="umbraco/channels/word.aspx" type="umbraco.presentation.channels.wordApi, umbraco" /> <add verb="*" name="ClientDependency" preCondition="integratedMode" path="DependencyHandler.axd" type="ClientDependency.Core.CompositeFiles.CompositeDependencyHandler, ClientDependency.Core " /> <add verb="GET,HEAD,POST" preCondition="integratedMode" name="SpellChecker" path="GoogleSpellChecker.ashx" type="umbraco.presentation.umbraco_client.tinymce3.plugins.spellchecker.GoogleSpellChecker,umbraco" /> </handlers>
I had the same frustrating issue, and just want to thank Johan above for pointing me in the direction that fixed it.
hello, my problem is not fixed :( After the backend showed up for a few moments (see under) i'm back with the same problem...
Hello,
Seems to be 'one-answer-for-everybody' is not find yet.
My problem is fixed at the moment with:
<add key="umbracoUseMediumTrust" value="true" />
After this two steps the problem was fixed. Tried to put the value from step 1 back on "false" but the problem was there again. back to "true" alone did not help, so i had to do step two again (first tick out an then tick on) and i saw the backend again.
Hope the problem won't comeback after working in the backend :-S.