I have two websites setup in Umbraco. One for local development (sct.local) and one for staging (sct.stage). I have a section under my root node called blog and under blog, I can add Blog Posts. When I create a blog post under localhost, it is the effect is happening on stage.
When I loop through all my blog posts and inspect the property:
blog.Parent.Parent, the Name property on the content is set to sct.stage instead of sct.local?
Any idea what is going on here and how to fix it? Basically, any changes made to blog posts for localhost are made on stage instead of localhost.
Content node is pointing to wrong Parent?
I have
two websites setup in Umbraco
. One for local development(sct.local)
and one for staging(sct.stage)
. I have a section under my root node called blog and under blog, I can add Blog Posts. When I create a blog post under localhost, it is the effect is happening on stage.When I loop through all my blog posts and inspect the property:
blog.Parent.Parent
, theName
property on the content is set tosct.stage
instead ofsct.local
?Any idea what is going on here and how to fix it? Basically, any changes made to blog posts for localhost are made on stage instead of localhost.
is working on a reply...