I just upgraded Umbraco from 6.2.4 -> 6.2.5 followed by a Tea Commerce upgrade from 2.3.2 -> 2.3.3 (for Umbraco 6). Everything seems to be alright ... but unfortunately the Tea Commerce section is now empty. I have no acces to the stores or setting etc.
Have anybody experienced the same? .... and/or do you have a solution to get the section to show up again?
Tea Commerce section is empty after upgrade
I just upgraded Umbraco from 6.2.4 -> 6.2.5 followed by a Tea Commerce upgrade from 2.3.2 -> 2.3.3 (for Umbraco 6). Everything seems to be alright ... but unfortunately the Tea Commerce section is now empty. I have no acces to the stores or setting etc.
Have anybody experienced the same? .... and/or do you have a solution to get the section to show up again?
Thanks,
Søren
Hi Søren
Are the tress still in the tree config? Important if you forgot to merge your config files etc.
Kind regards
Anders
Hi, the same problem is being disscussed on this thread.
Jarema
The trees.config file needs to be tweaked.
Tea Commerce has the following entries
<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="" />
but that syntax is not longer supported and should be
<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="" />
Some other packages suffer the same problem.
is working on a reply...