Hi Guys,
How to solve this mixed content issue in AEM 6.1 SP2 (Chrome and Firefox). Looks like it was resolved in AEM 6.0 SP3 (https://docs.adobe.com/docs/en/aem/6-0/release-notes-sp3.html).
Description:
Console Error:
Mixed Content: The page at 'https://------------------------------------------------------/story-csadcdsc.html' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://-----------------------------------------------------/story-csadcdsc.audit.json'. This request has been blocked; the content must be served over HTTPS.
Solved! Go to Solution.
Support responded with:
Details of solution may be extracted from daycare ticket: 89892.
This customer should create a daycare ticket for requesting hotfix for 6.1, if not already done because for new hotfixes the P2E process would need to be followed with support and engineering.
I am checking with our support team on this to see if there is a known hotfix.
Views
Replies
Total Likes
Try overlaying /libs/cq/ui/widgets/source/widgets/wcm/AuditLogDialog.js to /apps
and modify loadContent function to below
loadContent: function(path) {
this.setTitle(CQ.I18n.getMessage("AuditLog for") + " " + path)
//this.store.baseParams.path = path;
this.store.proxy = new CQ.Ext.data.HttpProxy({
"url": path + ".audit.json",
"method":"GET"
})
this.store.reload();
},
Support responded with:
Details of solution may be extracted from daycare ticket: 89892.
This customer should create a daycare ticket for requesting hotfix for 6.1, if not already done because for new hotfixes the P2E process would need to be followed with support and engineering.
Thanks @vmehrotr, this was a lifesaver; specially since it is becoming so difficult to get response back from Adobe team even after raising a ticket. The the widgets folder at /libs/cq/ui/widgets/source/widgets/wcm/AuditLogDialog.js is a cq:ClientLibraryFolder ; but the 'widgets' folder I created at /apps/cq/ui/widgets/source/widgets/wcm/AuditLogDialog.js is an nt:folder . Still it works fine.
cq:ClientLibraryFolder |
cq:ClientLibraryFolder |
Views
Replies
Total Likes
Views
Likes
Replies