I'm currently trying to upgrade from Umbraco v7 to v8 and we have some old datatypes called RJP.MultiUrlPicker. As I understand this is some old legacy stuff that is no longer in use.
When I'm migrating the uda file changes from this:
Which is clearly not what I want. We have a lot of data using this data-type, and now this will be lost if we dont figure out a way to migrate this data over to a normal "MultiUrlPicker".
I have of course tried to change the PropertyEditor in Backoffice to MultiUrlPicker, but if I do that, the whole page crashes...
Does anyone have any suggestion what I can do to make this work?
Which version of v7 are you trying to upgrade from? The Multi Url Picker was included in Umbraco 7.14, so the first step would be to upgrade to that version and change your data types to use Umbraco.MultiUrlPicker instead of my package. Then the migration to v8 should carry over the data type configuration.
But be aware if the project have used RJP.MultiUrlPicker before v2 the data stored on content might be int Id's instead of UDIs and if that's the case you need to write some custom migration code since Umbraco.MultiUrlPicker only supports UDI values
RJP.MultiUrlPicker and upgrade from v7 to v8
I'm currently trying to upgrade from Umbraco v7 to v8 and we have some old datatypes called RJP.MultiUrlPicker. As I understand this is some old legacy stuff that is no longer in use.
When I'm migrating the uda file changes from this:
To this:
Which is clearly not what I want. We have a lot of data using this data-type, and now this will be lost if we dont figure out a way to migrate this data over to a normal "MultiUrlPicker".
I have of course tried to change the PropertyEditor in Backoffice to MultiUrlPicker, but if I do that, the whole page crashes...
Does anyone have any suggestion what I can do to make this work?
Hi Thomas
Which version of v7 are you trying to upgrade from? The Multi Url Picker was included in Umbraco 7.14, so the first step would be to upgrade to that version and change your data types to use
Umbraco.MultiUrlPicker
instead of my package. Then the migration to v8 should carry over the data type configuration.But be aware if the project have used
RJP.MultiUrlPicker
before v2 the data stored on content might beint
Id's instead ofUDI
s and if that's the case you need to write some custom migration code sinceUmbraco.MultiUrlPicker
only supportsUDI
valuesis working on a reply...