Unable to delete Editable Template on Dispatcher rendered AEM 6.5 instance with Service Pack 7 | Community
Skip to main content
January 22, 2021
Solved

Unable to delete Editable Template on Dispatcher rendered AEM 6.5 instance with Service Pack 7

  • January 22, 2021
  • 2 replies
  • 2047 views

Hi all,

 

We are not able to delete editable template on dispatcher rendered AEM 6.5 instance with service pack 7 installed.

 

Error while deleting  newly created template which is not referenced in any page:

 

Steps followed:

1. Login to dispatcher server http://local.author.abc.com/libs/wcm/core/content/sites/templates.html/conf/we-retail

2. Create a new template say TestTemplate

3. Delete this TestTemplate in draft/enable mode

 

we see below error:

Uncaught SyntaxError: Unexpected token o in JSON at position 1
at JSON.parse (<anonymous>)

 

 

Error is thrown due to JSON.parse() method in templatedelete.is. data is passed as Object instead of String

 

 /libs/cq/gui/components/siteadmin/admin/templates/clientlibs/js/templatedelete.js

 

function handleDeleteRequest(paths) {
return $.ajax({
url: "/libs/wcm/core/content/sites/templates/usage.json",
type: "GET",
data: {
_charset_: "UTF-8",
path: paths
},
success: function(data) {
ui.clearWait();

// usages found
if (data && JSON.parse(data).anyTemplateUsed) {

 

We can delete editable templates from path http://localhost:4502/libs/wcm/core/content/sites/templates.html/conf/we-retail

 

Are there any configuration in dispatcher.any that we have to allow in order to delete Editable Templates.

 

Any help will be appreciated.

 

Thanks

Hina

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Kunal_Gaba_

Have you configured the dispatcher rules appropriately to not to cache anything under /apps and /libs?  It could be possible the usage.json mentioned in your screenshot is getting cached. If it is getting cached then make sure have disallowed /libs and /apps from the cache in your author dispatcher configuration. 

 

2 replies

Kunal_Gaba_
Kunal_Gaba_Accepted solution
January 25, 2021

Have you configured the dispatcher rules appropriately to not to cache anything under /apps and /libs?  It could be possible the usage.json mentioned in your screenshot is getting cached. If it is getting cached then make sure have disallowed /libs and /apps from the cache in your author dispatcher configuration. 

 

February 24, 2021

We are also getting the same error after our upgrade. We checked dispatcher but this usage.json is not at all being cached. Any other suggestions to fix this issue?