NuPickers not transferring by Courier and no error log generated
Hi all,
I'm having issues deploying from a corporate intranet to a site that is publicly available. The nodes and built-in Umbraco properties all seem to be Couriered across OK, but properties based on NuPickers don't seem to be transferred.
The documentation says uComponents have been builtin and accounted for in Courier, so I tried my luck without any data resolver configuration, but as this didn't work I tried configuring them, again without success.
To make things simpler and easier to debug I'm now trying to Courier content to and from local dev sites (domain.local to test.otherdomain.local), again without success.
Finally there doesn't appear to be an error log generated despite setting the appropriate flag in the .config file:
<debugMode>true</debugMode>
Any help or pointers would be very much appreciated.
OK, so the answer to the nuPickers not transferring was pretty simple: the data resolver needs to be inserted in both source and destination courier.config files i.e.:
<contentPickers>
<!-- other config -->
<add key="nuPickersXmlPrefetchListPicker">nuPickers.XmlPrefetchListPicker</add>
</contentPickers>
NuPickers not transferring by Courier and no error log generated
Hi all,
I'm having issues deploying from a corporate intranet to a site that is publicly available. The nodes and built-in Umbraco properties all seem to be Couriered across OK, but properties based on NuPickers don't seem to be transferred.
The documentation says uComponents have been builtin and accounted for in Courier, so I tried my luck without any data resolver configuration, but as this didn't work I tried configuring them, again without success.
To make things simpler and easier to debug I'm now trying to Courier content to and from local dev sites (domain.local to test.otherdomain.local), again without success.
Finally there doesn't appear to be an error log generated despite setting the appropriate flag in the .config file:
Any help or pointers would be very much appreciated.
Chris
OK, so the answer to the nuPickers not transferring was pretty simple: the data resolver needs to be inserted in both source and destination
courier.config
files i.e.:Make sure that nupickers is added to your courier.config:
Nice on Sebastian, worked a treat and makes sense to add them all for future use.
Cheers
Comment author was deleted
How about a grid property that has doc type grid editor and that doc type has a nupickers property, anyway to configure that :)
Comment author was deleted
Ok seems in that case you need the Doc Type Grid Editor Data Resolver https://github.com/leekelleher/umbraco-courier-dataresolvers
is working on a reply...