November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
I see that in CMS 11 config you have two providers - InRiver and XML. Do you use the same in CMS 12? If yes - order of provider registrations is important, and most probably you want to use the one from Optimizely (services.AddEmbeddedLocalization<Startup>() or similar) as the last one.
`AddEmbeddedLocalization` was already there
.AddLocalizationProvider<InRiverLocalizationProvider>()
.AddEmbeddedLocalization<Startup>()
so I added the InRiverLocalizationProvider, and the "fun" thing is, that the app is not starting with that single row added :/
If the app is not starting - that means there's some kind of exception in console, and application aborted? Do you have it to share here?
Without provider sources we can only guess what exactly fails, but most probably container cannot create provider in some way.
Thats the point, I can't see antything in console :/ Will try to debug the Startup, maybe indeed there is some issue with the provider.
Works now all fine :)
Thanks for tip for ordering that, I know that it matters but usually forget about that :D
The issue was that the custom LocalizationProvider had some services to resolve in ctor, which failed miserably while `Run()` was invoked on a webhost (build was fine), even the services were registered before "AddLocalizationProvider...". Reworked the provider, so the services are resolved _on the go_, and no more issues with that.
Migration from CMS 11 to 12 #again
I have such entry in web config:
and given the documentation there: https://docs.developers.optimizely.com/content-management-system/docs/configuring-a-custom-localization-provider I've created a startup code:
but I can't make it work with any different variations of that code above. The app go throug that config (checked on debug) and later doesn't start running :/
The custom localizer relevant code:
That localizer obv works in the CMS11 solution, but I am struggling to configure that on CMS12, hence the question.