I have succesfully upgraded my site to v7.2.1 but my Custom section is only shown as an Icon in the Left pane - nothing else. Do I need to rewrite them from scratch?
Did you clear the Umbraco cache by going to /config/ClientDependency.config and increment the version attribute? If not please try doing this and then recycle the app pool.
Ah, I was not aware of that either - So just for future reference, newcommers and others who could be facing the issue do you mind showing an example displaying the difference.
Upgrading custom sections to v7
Hi
I have succesfully upgraded my site to v7.2.1 but my Custom section is only shown as an Icon in the Left pane - nothing else. Do I need to rewrite them from scratch?
/Paul S
Hi Paul
Did you clear the Umbraco cache by going to /config/ClientDependency.config and increment the version attribute? If not please try doing this and then recycle the app pool.
Hope this helps.
/Jan
Thanks for your help.
It turned out that the types in the tree,config had to be fully qualified. Aparantly this was not nescessary prior to v7
/Paul S
Hi Paul
Ah, I was not aware of that either - So just for future reference, newcommers and others who could be facing the issue do you mind showing an example displaying the difference.
Cheers, Jan
Sure
Adding a custom application to the config/trees.config - before v7
assembly="PaulS.MsMember" type="MemberLoad"
in v7
assembly="PaulS.MsMember" type="PaulS.MsMember.MemberLoad,PaulS.MsMember"
is working on a reply...