sitecore [branch no longer exists]

Problem:

[branch no longer exists] - 





Solution

If items were created from template, 'MasterId' field has '00000000-0000-0000-0000-000000000000' value. MasterId field in SQL database is responsible for 'created from'. Update MasterId field to 00000000-0000-0000-0000-000000000000.


How to SQL command:

Do a backup. 
Be careful, use your own query and use filter.
update [your_db_name_master].[dbo].[Items] set MasterID = '00000000-0000-0000-0000-000000000000' where TemplateID = '<your TemplateID>'


Comments