1. After installing it on Umbraco 6.1.5 MVC project, gave me an error because there was <add name="SpringHandler" verb="*" path="*.aspx" type="Spring.Web.Support.PageHandlerFactory, Spring.Web" /> added to the config file. When I removed the name attribute it worked.
2. ON My RecentContent tab gives me an error. The mentioned page is exisits.
Could not load control: '/usercontrols/fmworkflow/RecentContent.ascx'.
Error message: System.ArgumentException: No Document exists with id '1122' at umbraco.cms.businesslogic.web.Document.setupNode() at umbraco.cms.businesslogic.CMSNode..ctor(Int32 Id) at FergusonMoriyam.Workflow.Umbraco.Web.Ui.RecentContent.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Spring.Web.Support.ControlAccessor.AddedControl(Control control, Int32 index) at Spring.Web.Support.SupportsWebDependencyInjectionOwnerProxy.AddedControl(Control control, Int32 index) at System.Web.UI.ControlCollection.Add(Control child) at umbraco.cms.presentation.dashboard.OnInit(EventArgs e)
I have some more information - the offending node causing the error is a media item (image). Maybe the my recent content module should not be looking at media? Or there is a bug in the query that means it does not handle media.
Could not load control: '/usercontrols/fmworkflow/RecentContent.ascx'. Error message: System.ArgumentException: No Document exists with id '1693' at umbraco.cms.businesslogic.web.Document.setupNode() at umbraco.cms.businesslogic.CMSNode..ctor(Int32 Id) at umbraco.cms.businesslogic.Content..ctor(Int32 id) at umbraco.cms.businesslogic.web.Document..ctor(Int32 id) at FergusonMoriyam.Workflow.Umbraco.Web.Ui.RecentContent.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Spring.Web.Support.ControlAccessor.AddedControl(Control control, Int32 index) at Spring.Web.Support.SupportsWebDependencyInjectionOwnerProxy.AddedControl(Control control, Int32 index) at System.Web.UI.ControlCollection.Add(Control child) at umbraco.cms.presentation.dashboard.OnInit(EventArgs e)
MyRecent Content Error
First of all thank you for the Package Workflow.
I have two issues.
1. After installing it on Umbraco 6.1.5 MVC project, gave me an error because there was <add name="SpringHandler" verb="*" path="*.aspx" type="Spring.Web.Support.PageHandlerFactory, Spring.Web" /> added to the config file. When I removed the name attribute it worked.
2. ON My RecentContent tab gives me an error. The mentioned page is exisits.
Could not load control: '/usercontrols/fmworkflow/RecentContent.ascx'.
Error message: System.ArgumentException: No Document exists with id '1122' at umbraco.cms.businesslogic.web.Document.setupNode() at umbraco.cms.businesslogic.CMSNode..ctor(Int32 Id) at FergusonMoriyam.Workflow.Umbraco.Web.Ui.RecentContent.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Spring.Web.Support.ControlAccessor.AddedControl(Control control, Int32 index) at Spring.Web.Support.SupportsWebDependencyInjectionOwnerProxy.AddedControl(Control control, Int32 index) at System.Web.UI.ControlCollection.Add(Control child) at umbraco.cms.presentation.dashboard.OnInit(EventArgs e)
I have the same issue with RecentContent.ascx. The No Document exists with id message references the document ID I had previously edited +1 strangely.
I have some more information - the offending node causing the error is a media item (image). Maybe the my recent content module should not be looking at media? Or there is a bug in the query that means it does not handle media.
Could not load control: '/usercontrols/fmworkflow/RecentContent.ascx'.
Error message: System.ArgumentException: No Document exists with id '1693' at umbraco.cms.businesslogic.web.Document.setupNode() at umbraco.cms.businesslogic.CMSNode..ctor(Int32 Id) at umbraco.cms.businesslogic.Content..ctor(Int32 id) at umbraco.cms.businesslogic.web.Document..ctor(Int32 id) at FergusonMoriyam.Workflow.Umbraco.Web.Ui.RecentContent.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Spring.Web.Support.ControlAccessor.AddedControl(Control control, Int32 index) at Spring.Web.Support.SupportsWebDependencyInjectionOwnerProxy.AddedControl(Control control, Int32 index) at System.Web.UI.ControlCollection.Add(Control child) at umbraco.cms.presentation.dashboard.OnInit(EventArgs e)
Umbraco v6.1.6 (Assembly version: 1.0.5021.24867)
Looks like a bug. Recent Content tries to instantiate a document using the Document constructor.
I've seen the issue before when deleted documents are attached to workflow, but what you are saying about media is likely right.
The patch would probably be just to add some error checking to the code behind of RecentContent.ascx
Will this be completed soon?
Seems like you already fixed it!
I needed the change. :) Thanks for accepting the pull request.
is working on a reply...