Open Closed

CMS Pro module not working #3665


User avatar
0
MohamedAli created
  • ABP Framework version: v5.1.4
  • UI type: MVC
  • DB provider: EF Core
    • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • **Steps to reproduce the issue*try to install CMS PRo *:" CMS Module not working as package or as a code and no migration run and no database table added All tables added except CMS tables How to fix this problem ??

1 Answer(s)
  • User Avatar
    0
    berkansasmaz created
    Support Team .NET Developer

    This may be because you did not activate the features of Cms-Kit that you want to use.

    All features are individually usable. If you disable a feature, it completely disappears from your application, even from the database tables, by the help of the Global Features system.

    If that's the problem, after the installation process, open the GlobalFeatureConfigurator class in the Domain.Shared project of your solution and place the following code into the Configure method to enable all the features in the CMS Kit module

    GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit =>
    {
        cmsKit.EnableAll();
    });
    

    See: https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Index

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11