The issue is about using Url Picker. It is working well at local environment but after deployment it was the problem that when editing url there is not all the form for editing is displayed. There are 2 errors in console:
Failed to load resource mysite.com/umbraco/views/components/html/umb-control-group.html?umb__rnd=7.5.3.16101210
Failed to load resource mysite.com/umbraco/views/components/html/umb-pane.html?umb__rnd=7.5.3.16101210
First check as alex says that the files are on the server. If they are but not accessible one idea is to check that there are no rewrite rules in place there with the intention of protecting access to the backoffice, which could be causing problems.
Files are not included in project as they are automatically included in deployment package by Umbraco task.
Files is present on server.
Direct request with cURL returns status 200
However, all request to those files in Umbraco itself results in error 500 (server-side, related to DependencyHandler), but there is no traces of this error on server itself (no Umbraco log about error, no Application log about error)
Here complete stack trace from console with debug="true" in web.config:
angular.min.js?cdv=1861646652:63 Error: Failed to load template: views/components/html/umb-control-group.html?umb__rnd=7.5.3.1861646652
at Error (native)
at http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:49:278
at http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:100:434
at o (http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:80:3)
at http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:81:80
at Object.$eval (http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:92:272)
at Object.$digest (http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:90:142)
at Object.$apply (http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:92:431)
at j (http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:101:80)
at r (http://uat/umbraco/lib/angular/1.1.5/angular.min.js?cdv=1861646652:104:449)
Finally, with help of my colleagues, I was able to fix this problem. It was related to server-setup: we've missed ServerSide Include IIS web role feature. After installation of this feature error was gone
Url Picker, umb-control-group.html, umb-pane.html
Hi all.
The issue is about using Url Picker. It is working well at local environment but after deployment it was the problem that when editing url there is not all the form for editing is displayed. There are 2 errors in console:
What can be cause of this problem?
Thanks, Nadya.
Hi Nadya,
How did you deploy your project?
Are these files accessible by get from browser ?
Thanks,
Alex
Hi Alex,
For deployment we use MSDeploy.
Log says that files were deployed but they are not accessible from browser.
Nadya
Hi Nadya,
So there are no file on the server, we need to fix it.
Is it included to the project? Sometimes not incuded files are not deployed.
Thanks,
Alex
First check as alex says that the files are on the server. If they are but not accessible one idea is to check that there are no rewrite rules in place there with the intention of protecting access to the backoffice, which could be causing problems.
Files are not included in the project but they are on the server.
Chiming in
Files are not included in project as they are automatically included in deployment package by Umbraco task. Files is present on server. Direct request with cURL returns status 200 However, all request to those files in Umbraco itself results in error 500 (server-side, related to DependencyHandler), but there is no traces of this error on server itself (no Umbraco log about error, no Application log about error)
Here complete stack trace from console with debug="true" in web.config:
Domain is whitelisted at ClientDependency.config
Finally, with help of my colleagues, I was able to fix this problem. It was related to server-setup: we've missed ServerSide Include IIS web role feature. After installation of this feature error was gone
is working on a reply...