I have recently upgrade my umbraco from 8.2.0 to 8.6.3. After upgrade my nested control broken. All controls under nested control return 404
Like
/umbraco/textbox:1 Failed to load resource: the server responded with a status of 404 (Not Found)
/umbraco/mediapicker Failed to load resource: the server responded with a status of 404 (Not Found)
I faced same situation when I try to upgrade from Umbraco 7 to Umbraco 10 with custom backoffice view. The root cause of my case is the usage of no-longer-existing directive <umb-editor> in umbraco 7.
<umb-property property="property" ng-repeat="property in currentTab.properties">
<umb-editor model="property"></umb-editor>
</umb-property>
I fixed the case by replacing <umb-editor> directive with <umb-property-editor>
All controls return 404 inside nested control
Hi,
I have recently upgrade my umbraco from 8.2.0 to 8.6.3. After upgrade my nested control broken. All controls under nested control return 404
Like
Provided those paths exist after the upgrade, the first thing I would check is permissions.
Thanks for your reply.
Folder permission is good.
I am not sure how nested content looking those controls in umbraco back office.
Working automatically. Nothing changed.
I faced same situation when I try to upgrade from Umbraco 7 to Umbraco 10 with custom backoffice view. The root cause of my case is the usage of no-longer-existing directive
<umb-editor>
in umbraco 7.I fixed the case by replacing
<umb-editor>
directive with<umb-property-editor>
is working on a reply...