Activities of "Vipinthachinari"

Hi,

Please make the repo private, because it include your license code

Done.

Hi,

Can you share the project with me? I will check it. my email is shiwei.liang@volosoft.com

Hi, I sent you an email on October 17, 2023, containing details and a project link. However, I did not receive a response. I have already sent a follow-up email. I am looking forward to your response and the resolution of this matter at your earliest convenience.

Hi,

Oh, the single-layer template missing the GlobalFeatureConfigurator class.

You can add the GlobalFeatureConfigurator to your project manually.

For example:

public class MyGlobalFeatureConfigurator 
{ 
   private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner(); 
 
    public static void Configure() 
    { 
        OneTimeRunner.Run(() => 
        { 
            GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit => 
            { 
                cmsKit.EnableAll(); 
            }); 
 
            GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro => 
            { 
                cmsKitPro.EnableAll(); 
            }); 
        }); 
    } 
} 
public class MyProjectNameModule .... 
{ 
    ..... 
    public override void PreConfigureServices(ServiceConfigurationContext context) 
    { 
        MyGlobalFeatureConfigurator.Configure(); 
    } 
} 

PS: You also need to add the database migration file.

"I have completed all the steps you mentioned before, but the result remains the same; the 'CMS' menu is not displayed.

1.Create a single-layer Application. 2.Install the CMS Kit using NuGet Package Manager. 3.Create the 'MyProjectName' GlobalFeatureConfigurator file and copy the configuration code as well. 4.Add the configuration in the 'MyProjectName' Module. 5.Regarding the migration, we are currently experiencing an issue. We are unable to generate migration data directly, so we've been copying migration data from a multi-layer application.Its also working. Is there anything we missed?

Hi,

You may need to install the CMS kit module manually. The CLI doesn't support it yet.

Yes, I installed it from the NuGet Package Manager. After the installation process, we need to add code GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit => { cmsKit.EnableAll(); }); in GlobalFeatureConfigurator in Domain.Shared but in Single layer application Where I can paste this code.

Hi,

As I understand, you want to install the CMS Kit module to the single-layer project.

Of course, you can do it.

But I'm unable to run it in a single-layer application. When I attempt to install the command 'abp add-module Volo.CmsKit.Pro' using CMD, it shows 'successfully installed,' but nothing actually gets installed. However, the same command works in a multi-layered application.

Showing 31 to 35 of 35 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13