0
votes

How can we delete multiple(more than one node) nodes at a time from the CRXDE lite or CRX Explorer

  • http://host:port/crx/de/index.jsp or from

  • http://host:port/crx/explorer/browser/index.jsp

Path:: /content/path to my web page parsys/

Where as the keyboard Ctrl or Shift keys are not allowing for selection & deletion of multiple nodes at a time.

3

3 Answers

1
votes

I tried but it seems that there is no way to delete multiple nodes at a time using CRXDE Lite or CRX Explorer!

However, if the nodes, which you want to delete, are type of page or asset, you can delete multiple at the same time using http://localhost:4502/siteadmin#/content or http://localhost:4502/damadmin#/content/dam correspondingly!

1
votes

try to login using Webdav and then then you can delete multiple nodes at one time. To access CRX repository using Webdav, you need to use Webdav client. For example you can download "AnyClient" for free.

0
votes

I'm not sure if CRXDE Lite allows to select multiple nodes using CRTL or SHIFT keys.

But if you already know the paths of the nodes or pages you want to delete. I prefer using the following curl command instead of using CRXDE Lite -

curl -X DELETE http://host:port/content-path/jcr:content/nodeName -u admin:admin

Hope this helps you.