表示
返信
いいね!の合計
Hi @VivekSr1 ,
-Tarun
Hi @TarunKumar ,
I am using AEM 6.5.21.
I have restarted my AEM TST and now I am getting message "This item is activated" which you can see in screenshot. And I am getting error 412 in wcmcommand.
表示
返信
いいね!の合計
Could you please provide the log messages associated with that error?
表示
返信
いいね!の合計
Getting below error in network tab.
表示
返信
いいね!の合計
It means the page you're trying to delete is currently linked or referenced by another page. The system is preventing you from deleting it to avoid breaking those references, which could lead to issues like broken links or missing content.
Open the References Rail and it will list the specific page(s) that are linked to the page you're trying to delete. Now you can update or remove the reference with a different page. Finally you can try deleting the original page again. The error should no longer appear.
表示
返信
いいね!の合計
Thanks for your quick response.
This error is coming for every fragment like new as well .
I had created a new content fragment and trying to delete and getting the same error.
表示
返信
いいね!の合計
You can use a JCR-SQL2 query similar to the following to count the nodes under a given path:
SELECT COUNT(*) AS total FROM [nt:base] AS node
WHERE ISDESCENDANTNODE(node, '/your/path')
Replace '/your/path' with the actual path you want to count nodes for. This query uses the COUNT(*) function to return the total number of nodes under the specified path.
When the number of nodes exceeds 100,000, the query, instead of completing, it throws a RuntimeNodeTraversalException to prevent excessive resource consumption and potential performance degradation.
By conducting this test, you can confirm that the issue is specifically related to the number of nodes under the root node. I recommend performing this in a non-live environment due to potential negative impacts.
@VivekSr1 Did you find the suggestions helpful? Please let us know if you need more information. If a response worked, kindly mark it as correct for posterity; alternatively, if you found a solution yourself, we’d appreciate it if you could share it with the community. Thank you!
表示
返信
いいね!の合計