I've created a clean Umbraco v9 installation. After that, installed uSync via NuGet (Install-Package uSync).
When browsing to the dashboard via Settings - uSync the following error in console shows:
umbraco-backoffice-js.js.v1:152 Error: [$controller:ctrlreg] http://errors.angularjs.org/1.8.0/$controller/ctrlreg?p0=uSyncSettingsDashboardController
at umbraco-backoffice-js.js.v1:32
at umbraco-backoffice-js.js.v1:123
at ea (umbraco-backoffice-js.js.v1:105)
at p (umbraco-backoffice-js.js.v1:96)
at g (umbraco-backoffice-js.js.v1:90)
at umbraco-backoffice-js.js.v1:89
at Object.link (umbraco-backoffice-js.js.v1:326)
at umbraco-backoffice-js.js.v1:42
at Ca (umbraco-backoffice-js.js.v1:114)
at p (umbraco-backoffice-js.js.v1:98) '
'
Any idea how to fix this? Already tried reinstalling.
Thanks for the help.
uSync dashboard not loading
Hi,
I've created a clean Umbraco v9 installation. After that, installed uSync via NuGet (Install-Package uSync).
When browsing to the dashboard via Settings - uSync the following error in console shows:
Any idea how to fix this? Already tried reinstalling. Thanks for the help.
Hi,
I would check the app_plugin files have been copied over as part of the build (should happen when you build or run dotnet build).
app_plugins.
There should be a uSync folder in app_plugins e.g
if these aren't copying then there probably something broken 😔 your build/package process
break the cache
Also you could increment the version for the runtime minification (this will break any caching of the js files that Umbraco might have made)
In your appsettings.json file. under the
"Umbraco"
section.run in debug
to confirm you could run in debug, and instead of caching the files Umbraco will return them individually.
again in the
"Umbraco"
section of the appsettings.json fileif there is anything wrong with the files / code this should at least pinpoint which file is the problem.
Breaking the cache and running in debug fixed this issue. Thanks a lot!
is working on a reply...