dammark
(Sebastian Dammark)
1
According to the documentation it should be possible to skip the path is too long error, when restoring content from Umbraco Cloud.
Link: docs.umbraco.com
So now I’ve added the following to my appsettings.json
"Deploy": {
"Settings": {
"ContinueOnMediaFilePathTooLongException": true
}
}
But I still get the same error.
What else can I do ?
dammark
(Sebastian Dammark)
2
This solved it for me, since I don’t really need the files locally.
"Deploy": {
"Settings": {
"ExcludedEntityTypes": ["media-file"],
"ContinueOnMediaFilePathTooLongException": true
}
}
system
(system)
Closed
3
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.