Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Carsten Nørregaard Panek 34 posts 124 karma points
    Nov 16, 2017 @ 08:56
    Carsten Nørregaard Panek
    0

    Teacommerce section is empty after upgrade

    Hi

    I have made an upgrade of an Umbraco 6.1.x to 6.2.6 - manual upgrade following the generel upgrade guide from Umbraco.

    After the upgrade the Teacommerce section is empty - there is nothing in the tree.

    I can access and use the Teacommerce views, when pointing a browser /app_plugins/teacommerce/views/orders/searchorders.aspx?storeId=1&orderStatusId=1 I get the Teacommerce order overview.

    How do I get the tree working again?

    Plesse help :-)

    Sidenote: I have installed Teacommerce again on top of the upgrade and that did not help.

    I get this in log, if I enable debug mode:

    2017-11-16 07:25:11,402 [8] WARN umbraco.BusinessLogic.ApplicationTree - [Thread 124] The tree definition: could not be resolved to a .Net object type

    2017-11-16 07:25:11,402 [8] WARN umbraco.BusinessLogic.ApplicationTree - [Thread 124] The tree definition: could not be resolved to a .Net object type

    2017-11-16 07:25:11,402 [8] WARN umbraco.BusinessLogic.ApplicationTree - [Thread 124] The tree definition: could not be resolved to a .Net object type

    2017-11-16 07:25:11,402 [8] WARN umbraco.BusinessLogic.ApplicationTree - [Thread 124] The tree definition: could not be resolved to a .Net object type

  • Carsten Nørregaard Panek 34 posts 124 karma points
    Nov 16, 2017 @ 14:22
    Carsten Nørregaard Panek
    100

    I have resolved this with hints from https://our.umbraco.org/projects/developer-tools/robotstxt-editor/feedback/74747-could-not-be-resolved-to-a-net-object-type

    In trees.config I changed:

      <add silent="false" initialize="true" sortOrder="0" alias="tea-commerce-store-tree" application="teacommerce" title="Stores" iconClosed="folder.gif" iconOpen="folder_o.gif" assembly="TeaCommerce.Umbraco.Application" type="Trees.StoreTree" action="" />
      <add silent="false" initialize="true" sortOrder="1" alias="tea-commerce-security-tree" application="teacommerce" title="Security" iconClosed="folder.gif" iconOpen="folder_o.gif" assembly="TeaCommerce.Umbraco.Application" type="Trees.SecurityTree" action="" />
      <add silent="false" initialize="true" sortOrder="2" alias="tea-commerce-licenses-tree" application="teacommerce" title="Licenses" iconClosed="folder.gif" iconOpen="folder_o.gif" assembly="TeaCommerce.Umbraco.Application" type="Trees.LicenseTree" action="" />
      <add silent="false" initialize="true" sortOrder="3" alias="tea-commerce-need-help-tree" application="teacommerce" title="Need help?" iconClosed="folder.gif" iconOpen="folder_o.gif" assembly="TeaCommerce.Umbraco.Application" type="Trees.NeedHelpTree" action="" />
    

    To:

    <add silent="false" initialize="true" sortOrder="0" alias="tea-commerce-store-tree" application="teacommerce" title="Stores" iconClosed="folder.gif" iconOpen="folder_o.gif" type="TeaCommerce.Umbraco.Application.Trees.StoreTree, TeaCommerce.Umbraco.Application" action="" />
      <add silent="false" initialize="true" sortOrder="1" alias="tea-commerce-security-tree" application="teacommerce" title="Security" iconClosed="folder.gif" iconOpen="folder_o.gif" type="TeaCommerce.Umbraco.Application.Trees.SecurityTree, TeaCommerce.Umbraco.Application" action="" />
      <add silent="false" initialize="true" sortOrder="2" alias="tea-commerce-licenses-tree" application="teacommerce" title="Licenses" iconClosed="folder.gif" iconOpen="folder_o.gif" type="TeaCommerce.Umbraco.Application.Trees.LicenseTree, TeaCommerce.Umbraco.Application" action="" />
      <add silent="false" initialize="true" sortOrder="3" alias="tea-commerce-need-help-tree" application="teacommerce" title="Need help?" iconClosed="folder.gif" iconOpen="folder_o.gif" type="TeaCommerce.Umbraco.Application.Trees.NeedHelpTree, TeaCommerce.Umbraco.Application" action="" />
    
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies