crosspost: https://orchard.codeplex.com/discussions/484033
I'm migrating from Orchard CMS 1.6 to 1.7.2. To give some background, I've hurdled a prior issue before migrating terms in taxonomies by updating the tables:
UPDATE Contrib_Taxonomies_TermPartRecord
SET Path = '/' + Path
WHERE Path NOT LIKE '/%'
UPDATE Contrib_Taxonomies_TermPartRecord
SET Path = '/'
WHERE Path IS NULL
So I've got some content types which have some taxonomies associated to them.
- I can create new Content Items without associated taxonomy terms (selecting nothing)
- I can create new Content Items with some specific terms only (haven't seen a pattern in the terms)
- I can't create/save/publish new Content Items associated to some specific terms (page just tries to load and it's like there's an infinite loop in the background)
Worst part is that no errors are thrown or logged, even in debug mode.
Anyone have any ideas or leads? Has anyone encountered similar behavior before?
Thanks!