No Document exists with Version 'f8617055-bb1a-4ea5-b1dc-695171b5c3c8'
Cleaning up versions from Umbraco and I get this error message
At /umbraco/FALMHousekeeping/versions/cleanupVersionsByCount.aspx?action=cleanupversionsbycount (Referredby: http://www.njection.com/umbraco/FALMHousekeeping/versions/cleanupVersionsByCount.aspx?action=cleanupversionsbycount): System.ArgumentException:NoDocument exists withVersion 'f8617055-bb1a-4ea5-b1dc-695171b5c3c8' at umbraco.cms.businesslogic.web.Document.setupNode() at umbraco.cms.businesslogic.web.Document..ctor(Int32 id) at FALMHousekeepingTools.versions.cleanupVersionsByCount.btnClearVersions_Click(Object sender,EventArgs e) at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,Boolean includeStagesAfterAsyncPoint)
I tryed using the following solution but I couldn't find any nodes.
I recently ran into a similar error message, the client tried to Rollback a document which produced an error, then you could no longer open the node (it produced the same error as above). It appears it started creating a new version for the Rollback but never finished due to the error.
Are you able to open the document? You could try finding out what document it is by looking in the cmsContentVersion table for that versionId to grab the Node ID, then check the cmsDocument table for the nodeName.
If you can't open the document in the backend UI and get the same error, the fix I used may work for you. However I can't guarantee there won't be any side effects or if this is a proper fix, but it worked in my case. Make sure you make a database backup first! The fix is to delete the latest version which is "bad", which I got from this workitem.
DELETE FROM cmsPreviewXml WHERE versionId='your-version-guid-here' DELETE FROM cmsContentVersion WHERE ContentID='node-id-here' and versionId='your-version-guid-here'
Our site (V4.9.0) (backend only) died with a similar error following use of the ROLLBACK option in the content tree. Our non-techincal editor had a meltdown!
I had to copy the databaase to a local machine to edit as per your advice, then reload it back at the service provider. Worked 100% and only took minutes.
No Document exists with Version 'f8617055-bb1a-4ea5-b1dc-695171b5c3c8'
Cleaning up versions from Umbraco and I get this error message
I tryed using the following solution but I couldn't find any nodes.
kkurni.blogspot.com/.../...xists-with-version.html
Hi Shannon,
I recently ran into a similar error message, the client tried to Rollback a document which produced an error, then you could no longer open the node (it produced the same error as above). It appears it started creating a new version for the Rollback but never finished due to the error.
Are you able to open the document? You could try finding out what document it is by looking in the cmsContentVersion table for that versionId to grab the Node ID, then check the cmsDocument table for the nodeName.
If you can't open the document in the backend UI and get the same error, the fix I used may work for you. However I can't guarantee there won't be any side effects or if this is a proper fix, but it worked in my case. Make sure you make a database backup first! The fix is to delete the latest version which is "bad", which I got from this workitem.
Hope this helps,
Tom
@Tom. Your solution worked for me. Thanks!
Tom,
You just saved me a whole world of pain.
Regards
Ismail
Thanks Tom.
Our site (V4.9.0) (backend only) died with a similar error following use of the ROLLBACK option in the content tree. Our non-techincal editor had a meltdown!
I had to copy the databaase to a local machine to edit as per your advice, then reload it back at the service provider. Worked 100% and only took minutes.
All the best
John P
is working on a reply...