on ‎2019 Jan 11 12:17 PM
Every time we put the Website 'Active' on 'False',
Within 30 minutes it is back on 'True' and the website can be reached!
Is there a way to permanently DISABLE the website untill we put it on active again??
Thank you!
Request clarification before answering.
Most likely, your content catalog synchronization job is scheduled to run for every 30 minutes and it is causing this. The solution to this is to exclude this property from being synchronized. You can do it using hMC or an ImpEx script e.g.
INSERT_UPDATE SyncAttributeDescriptorConfig;syncJob(code)[unique=true,path-delimiter=!];attributeDescriptor(enclosingType(code), qualifier)[unique=true];includedInSync;copyByValue
;sync-job-code;itemtype-code:attribute-qualifier-to-be-excluded;false;false
In your case, it should be:
INSERT_UPDATE SyncAttributeDescriptorConfig;syncJob(code)[unique=true,path-delimiter=!];attributeDescriptor(enclosingType(code), qualifier)[unique=true];includedInSync;copyByValue
;sync-job-code;CMSSite:active;false;false
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great idea! Just added this, now to check if it worked 🙂 Thank you in advance
INSERT_UPDATE SyncAttributeDescriptorConfig; syncJob(code)[default = synjobName][unique = true][path-delimiter = !]; attributeDescriptor(enclosingType(code), qualifier)[unique = true]; includedInSync; copyByValue
; $syncJob ; CMSSite:active ; false ; false
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.