Hi Guys,
According to the experiment by me on AEM6.2 (run mode: author,crx3,crx3tar,nosamplecontent), I found there was nothing in left of screen.
Does anyone know how to display the node tree?
See attachment.
Regards.
Solved! Go to Solution.
Thanks for your input.
I found the configuration in url /system/console/configMgr "Apache Sling DavEx Servlet" and set /server to /crx/server.
Maybe Adobe need correct the documentation.
Any Browser Console errors?
Also share the Error.log of AEM instance.
Thanks and Regards
Kautuk Sahni
Views
Replies
Total Likes
jiaBai wrote...
Hi Guys,
According to the experiment by me on AEM6.2 (run mode: author,crx3,crx3tar,nosamplecontent), I found there was nothing in left of screen.
Does anyone know how to display the node tree?
See attachment.
Regards.
This is as designed, since you're using nosamplecontent runmode.
Note on Running AEM in Production Ready Mode :
"Also, note that running AEM in Production Ready Mode will effectively disable access to CRXDE Lite on author instances. If you need it for debugging purposes, see Enabling CRXDE Lite in AEM."
- JK
Views
Replies
Total Likes
Hi,
even though the documentation says you should edit the OSGI configuration for
to enable CRXDE Lite, I couldn't find the above. There is however a comamnd further down in the page which if you run, will enable CRXDE Lite to work correctly
curl -u admin:admin -F "jcr:primaryType=sling:OsgiConfig" -F "alias=/crx/server" -F "dav.create-absolute-uri=true" -F "dav.create-absolute-uri@TypeHint=Boolean" http://localhost:4502/apps/system/config/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet
After you run the above command, the OSGI config for "SlingDavExServlet" will appear.
Regards,
Opkar
Views
Replies
Total Likes
Thanks for your input.
I found the configuration in url /system/console/configMgr "Apache Sling DavEx Servlet" and set /server to /crx/server.
Maybe Adobe need correct the documentation.
Hello,
The curl command mentioned in https://docs.adobe.com/docs/en/aem/6-2/administer/security/security-checklist/enabling-crxde-lite.ht... did not work for us in AEM 6.2
We managed to enable grab the curl from Network Tab.
The following CURL works fine for us.
curl -u admin:password -v --data "apply=true&action=ajaxConfigManager&%24location=launchpad%3Aresources%2Finstall%2F0%2Forg.apache.sling.jcr.davex-1.3.4.jar&alias=%2Fcrx%2Fserver&dav.create-absolute-uri=true&dav.protectedhandlers=org.apache.jackrabbit.server.remoting.davex.AclRemoveHandler&propertylist=alias%2Cdav.create-absolute-uri%2Cdav.protectedhandlers" -X POST http://localhost:4502/system/console/configMgr/org.apache.sling.jcr.davex.impl.servlets.SlingDavExSe...
Thanks
Harish