I can not create scripting files in Umbraco installation 6.1.6
I Keep getting this error message in the Umbraco backoffice, when trying to create a scripting file.
I don't know what to do about it, can someone please help?
ServerErrorin'/'Application.The method or operation isnot implemented.Description:An unhandled exception occurred during the execution of the current web request.Please review the stack trace for more information about the error andwhere it originated in the code.ExceptionDetails:System.NotImplementedException:The method or operation isnot implemented.SourceError:[No relevant source lines]SourceFile:MacroEngineFactory.cs Line:92StackTrace:[NotImplementedException:The method or operation isnot implemented.]Umbraco.Tests.MacroEngine1.get_SupportedUIExtensions()+57
umbraco.cms.businesslogic.macro.MacroEngineFactory.GetSupportedUILanguages()inMacroEngineFactory.cs:92
umbraco.presentation.create.DLRScripting.Page_Load(Object sender,EventArgs e)inDLRScripting.ascx.cs:28System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender,EventArgs e)+51System.Web.UI.Control.OnLoad(EventArgs e)+92System.Web.UI.Control.LoadRecursive()+54System.Web.UI.Control.LoadRecursive()+145System.Web.UI.Control.LoadRecursive()+145System.Web.UI.Control.LoadRecursive()+145System.Web.UI.Control.LoadRecursive()+145System.Web.UI.Control.LoadRecursive()+145System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,Boolean includeStagesAfterAsyncPoint)+772
Just looking at the exception message, it contains a reference to Umbraco.Tests.MacroEngine1, which is part of the core's unit-tests. How are you running Umbraco? (from binary download, or NuGet, or built from source?)
If you are building from the source, then try removing the Umbraco.Tests.dll from your /bin folder.
Hmmm, that is strange. Wondering if somehow the test MacroEngine is being cached somewhere? I'd suggest rebuilding the source, but that would only add the Umbraco.Tests.dll back into the /bin folder.
Curious if there is a reason that you are running from the source? rather than the binary releases? (none of my business really, just curious)
I can not create scripting files in Umbraco installation 6.1.6
I Keep getting this error message in the Umbraco backoffice, when trying to create a scripting file.
I don't know what to do about it, can someone please help?
Hi Bjørn,
Just looking at the exception message, it contains a reference to
Umbraco.Tests.MacroEngine1
, which is part of the core's unit-tests. How are you running Umbraco? (from binary download, or NuGet, or built from source?)If you are building from the source, then try removing the
Umbraco.Tests.dll
from your /bin folder.Cheers,
- Lee
Hi Lee,
Thanks for fast response. I'm running Umbraco as a built from source.
But I'm not getting rid of the error by removing the dll file
Umbraco.Tests.dll
It still throws me the same error :(
- Bjørn
Is the error message exactly the same?
(Thinking that if the
Umbraco.Tests.MacroEngine1
isn't there, then it might be a different error?)Yes.
I've removed all references to the test project and I'm still getting the same stack trace, and yes the exact same error!
Hmmm, that is strange. Wondering if somehow the test MacroEngine is being cached somewhere? I'd suggest rebuilding the source, but that would only add the
Umbraco.Tests.dll
back into the /bin folder.Curious if there is a reason that you are running from the source? rather than the binary releases? (none of my business really, just curious)
Cheers,
- Lee
is working on a reply...