Umbraco 4.8 had bug in umbraco.cms.businesslogic.web.Document.Publish method?
I try to edit a node, save and Publish a node.
I can look in BackOffice that the node is changed correctly.
In web page, I use razor to render to HTML. This cshtml file use umbrac.MacroEngines.DynamicNode. This node version returns the old value.
Then, in BackOffice, I try to click “Salve and Publish”, then webpage render the correct data.
Umbraco 4.8 had bug in umbraco.cms.businesslogic.web.Document.Publish method? I try to edit a node, save
Share
DynamicNodeaccesses the node’s information from theumbraco.configcache, it doesn’t directly access the database (See Difference between Node and Document). Saving and Publishing do not update the cache by themselves, there is an additional step.Example:
See Publishing and republishing for more details.