Upgrading to Umbraco version 7.15.3 from 7.3 (on the way to v14)
Having been handed a funcitoning v7.3 system and told to get it upgraded to 14, its taken me some time to get the first step upgrade to actually work.
Downloaded the 7.15.3 zip and copied / merged many a file. A lot of editing of dll version numbers and various files that were not mentioned in the basic instructions.
Opened up the admin interface ok, but cannot get the front end of the site to open.
What I do get is:
"'System.Collections.Generic.List<Umbraco.Core.Models.IPublishedContent>' does not contain a definition for 'Split'"
It points at line 5 in HomePage.cshtml -
var topNodes = home.topLinks.Split(',');
As with all the other errors, this must be a missed file somewhere or the wrong version of something but I'm stuck - any thoughts or suggestions?
Thanks.
Whilst the code change didn't do anything, I discovered that ModelsBuilder was added after v7.3 and that the install instructions didn't allow for that. Copying the ModelsBuilder folder to the App_Plugins folder fixes it.
Upgrading to Umbraco version 7.15.3 from 7.3 (on the way to v14)
Having been handed a funcitoning v7.3 system and told to get it upgraded to 14, its taken me some time to get the first step upgrade to actually work.
Downloaded the 7.15.3 zip and copied / merged many a file. A lot of editing of dll version numbers and various files that were not mentioned in the basic instructions. Opened up the admin interface ok, but cannot get the front end of the site to open.
What I do get is:
It points at line 5 in HomePage.cshtml -
As with all the other errors, this must be a missed file somewhere or the wrong version of something but I'm stuck - any thoughts or suggestions?
Hello,
I believe you are using ModelsBuilder and that "toplinks" is a tree node picker. See how you can change your implementation here
https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/multinode-treepicker#mvc-view-example
see if this works
Thanks. Whilst the code change didn't do anything, I discovered that ModelsBuilder was added after v7.3 and that the install instructions didn't allow for that. Copying the ModelsBuilder folder to the App_Plugins folder fixes it.
is working on a reply...