Hi @helptech , Below are the explanation of your logs and solution.
-
Get /content/test/en_US/demoPage.html Http /1.1 :This indicates the HTTP request that was made to access the page. It specifies the URL path and the HTTP version used.
-
core.day.cq.wcm.core.impl.page.PageImpl: This implementation class in AEM that encountered the error. In this case, it is the PageImpl class, which is responsible for handling page-related operations.
-
page at /content/test/en_US: This indicates the path of the page that is causing the issue. In this case, the page is located at /content/test/en_US.
-
does not have a jcr:content childresource: This indicates the specific problem. It states that the page at /content/test/en_US does not have a child resource named jcr:content. In AEM, the jcr:content node is typically used to store the content and properties of a page.
Solution : You need to ensure that the page at /content/test/en_US has a child resource named jcr:content. This can be done by creating a new child node under the page node with the name jcr:content.
Regards,
Shiv