no parent: no LiveCopy errors for content that does not exist | Community
Skip to main content
Level 4
February 20, 2017

no parent: no LiveCopy errors for content that does not exist

  • February 20, 2017
  • 1 reply
  • 3708 views

We are getting warning messages in our error.log file (LiveRelationshipManagerImpl StarResource : no parent: no LiveCopy errors for content that does not exist) for our pages.

Use case is we have included some parsys components on our page. After investigation, we found if parsys have some components dragged and dropped inside it, then warning message will not come but if there is no component dragged and dropped inside parsys then it’s throwing above waning message (Expecting some components inside it). Someone had already posted this issue on Adobe forum, but no reply. Is this bug in AEM 6 or anyone faced same issue??

http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manager.topic.html/forum__ccbq-25_07_2016_100138.html

Regards

Sreeni

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

Bharath_valse
Level 4
September 12, 2018

These warnings are usually generated when there is a parsys included and the parsys is empty without any components added to it. For example in the below code parsys "warning_test", a node warning_test is not created until there is a component added to parsys "warning_test" and hence the warning message. Adding a component to the parsys should create a node and avoid the warning.

These warnings are not related to MSM live copies and does not appear to have a detrimental effect.

<div class="grid_12 body_container">

        <cq:include script="redirect.jsp"/>

        <cq:include path="par" resourceType="foundation/components/parsys"/>

    </div>

    <div class="grid_4 right_container">

        <cq:include path="rightpar" resourceType="foundation/components/iparsys"/>

    </div>

        Adobe Test Warning Message

        <cq:include path="warning_test" resourceType="foundation/components/parsys"/>

    <div class="clear"></div>

</div>