使用“editor.html”(http://localhost:4502/editor.html/content/mypage.html)的网址未正确加载我的网页。但是当我删除editor.html时,它会完美加载(http://localhost:4502/content/mypage.html)。 我正在使用AEM6.1。如果我在经典UI中打开页面,它看起来不错。但是当我在触摸UI中打开它时,它没有正确加载。
任何人都遇到过同样的问题吗?
答案 0 :(得分:1)
此问题可能是由于“ Apache Sling Main Servlet”的默认配置。
当我们处于Touch UI编辑器模式时,我们还可以在浏览器控制台中观察到错误消息“无法加载组件”或“内存不足”。
默认情况下,“ Apache Sling Main Servlet”配置为每个请求1000个调用。如果我们增加此限制,那么问题将得到解决。
For updating this follow the steps.
1. Go to the http://<host>:<port-number>/system/console/configMgr (ex: http://localhost:4502/system/console/configMgr)
2. Ctrl + F and Search for "Apache Sling Main Servlet".
3. Change the value of 'Number of Calls per Request' from 1000 (defaulut value) to 1500 or 2000.
4. Click on Save.
5. Now you can go to Touch UI edit mode and can be able to edit the components.
答案 1 :(得分:0)
在/ libs / wcm / core / content文件夹下检查您的CRXDE,并找到一个名为“editor.html”的文件夹,其中包含“editor”的兄弟。如果您删除editor.html文件夹并保留“编辑器”,那么您的页面将重新开始工作。