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)
-
0
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 theDomain.Shared
project of your solution and place the following code into theConfigure
method to enable all the features in the CMS Kit moduleGlobalFeatureManager.Instance.Modules.CmsKit(cmsKit => { cmsKit.EnableAll(); });
See: https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Index