Activities of "Vipinthachinari"

can you add this in GlobalFeatureConfigurator class in the `Domain.Shared

``GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>  
{  
    cmsKitPro.EnableAll();  
});`  

and restart the application.

Hi,

We are currently investigating this issue within our application, specifically the Application template (single layer) generated using ABP Suite. We have completed the following steps:

1.Install the CMSKit packages: Add below code in project file <ItemGroup> <PackageReference Include="Volo.CmsKit.Pro.Admin.Web" Version="6.0.0" /> <PackageReference Include="Volo.CmsKit.Pro.Admin.Application" Version="6.0.0" /> <PackageReference Include="Volo.CmsKit.Pro.Admin.HttpApi" Version="6.0.0" /> <PackageReference Include="Volo.CmsKit.Pro.EntityFrameworkCore" Version="6.0.0" /> </ItemGroup>

2.Add module dependencies : In project Module File typeof(CmsKitProAdminWebModule), typeof(CmsKitProAdminHttpApiModule), typeof(CmsKitProEntityFrameworkCoreModule), typeof(CmsKitProAdminApplicationModule)

3.Add MyGlobalFeatureConfigurator class in project

public class QueuingSystemGlobalFeatureConfigurator { 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(); 
            }); 
        }); 
    } 
} 

4.Add ''GlobalFeatureConfigurator.Configure(); in project Module File - PreConfigureServices() 5.Configure the DbContext : Add below code

    builder.ConfigureCmsKitPro(); 
    builder.ConfigureCmsKit(); 
     

6.Create a new migration file and update database Create a new migration for CMS (dotnet ef migrations add InitialCmsKitProMigration) and update database (dotnet ef database update)

After successfully following these two steps—installing CMS Kit Pro and creating tables for CMS Kit in the database—it is not displaying the CMS menu as you mentioned.

When I connect to the database that was previously working with an existing project, the same application functions correctly. Could this be related to a migration issue? I encountered a similar problem before, and at that time, I generated the migration file using the Package Manager Console and then used the CLI, which resolved the issue. However, this approach is not currently resolving the problem.

Hi,

Now the cms kit pro Installation issue in single layer is fixed (Permission Issue) but the style issue is not fixed.Please provide a resolution on this.

Run migrations (if using Entity Framework Core): dotnet ef migrations add InitialCmsKitProMigration and for style classe related issue please check this ticket https://support.abp.io/QA/Questions/5784/CSS-styles-and-Java-Script-Code-doesn%27t-apply-to-the-HTML-code

HI,

From the below link it is clear that the cms page will accept the style classes, but it is not clear how it achieved.I just downloaded the sample code they are provided and I can't see any resolution that you are provided. https://blog.abp.io/abp/Unleash-the-Power-of-ABP-CMS-Kit-A-Dynamic-Content-Showcase

can you add this in GlobalFeatureConfigurator class in the `Domain.Shared

``GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro => 
{ 
    cmsKitPro.EnableAll(); 
});` 

and restart the application.

Hi,

We are currently investigating this issue within our application, specifically the Application template (single layer) generated using ABP Suite. We have completed the following steps:

1.Install the CMSKit packages: Add below code in project file <ItemGroup> <PackageReference Include="Volo.CmsKit.Pro.Admin.Web" Version="6.0.0" /> <PackageReference Include="Volo.CmsKit.Pro.Admin.Application" Version="6.0.0" /> <PackageReference Include="Volo.CmsKit.Pro.Admin.HttpApi" Version="6.0.0" /> <PackageReference Include="Volo.CmsKit.Pro.EntityFrameworkCore" Version="6.0.0" /> </ItemGroup>

2.Add module dependencies : In project Module File typeof(CmsKitProAdminWebModule), typeof(CmsKitProAdminHttpApiModule), typeof(CmsKitProEntityFrameworkCoreModule), typeof(CmsKitProAdminApplicationModule)

3.Add MyGlobalFeatureConfigurator class in project

public class QueuingSystemGlobalFeatureConfigurator { 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();
            });
        });
    }
}

4.Add ''GlobalFeatureConfigurator.Configure(); in project Module File - PreConfigureServices() 5.Configure the DbContext : Add below code

    builder.ConfigureCmsKitPro();
    builder.ConfigureCmsKit();
    

6.Create a new migration file and update database Create a new migration for CMS (dotnet ef migrations add InitialCmsKitProMigration) and update database (dotnet ef database update)

After successfully following these two steps—installing CMS Kit Pro and creating tables for CMS Kit in the database—it is not displaying the CMS menu as you mentioned.

When I connect to the database that was previously working with an existing project, the same application functions correctly. Could this be related to a migration issue? I encountered a similar problem before, and at that time, I generated the migration file using the Package Manager Console and then used the CLI, which resolved the issue. However, this approach is not currently resolving the problem.

Run migrations (if using Entity Framework Core): dotnet ef migrations add InitialCmsKitProMigration and for style classe related issue please check this issue https://support.abp.io/QA/Questions/5784/CSS-styles-and-Java-Script-Code-doesn%27t-apply-to-the-HTML-code

Hi, The new Migration is created but after " dotnet ef database update " the CMS table are also created, but the menu is not showing means, . Also style issue it would not working in my application.

Hi,
Please check this document https://docs.abp.io/en/commercial/latest/modules/cms-kit/index and check this ticket https://support.abp.io/QA/Questions/5982/ABP-Sigle-Layer-Application-with-CMS-Kit-Pro

Hi,

I previously verified and installed the necessary components. However, when attempting to create a new Single Layer application and installing Cms Kit Pro, although the installation was successful, I encountered difficulties creating a new migration for it(can you please provide the CLI commands for it). Additionally, in my actual application, the CMS page is not accepting the style classes.

Hi,

please check this https://docs.abp.io/en/abp/2.5/Customizing-Application-Modules-Extending-Entities#subscribing-to-local-events if found helpful. Also have look to this https://volosoft.com/blog/RealTime-Messaging-Distributed-Architecture-Abp-SingalR-RabbitMQ

regards,

Hi, Using SignalR, I can send messages from a client to client ,but not Server to client. How can we send from Server to Client ? Is it needed a connection from server side? Is there any sample code to sent message from server to client?

Please add all the Volo.CmsKit.Pro.Public.* packages

  • Volo.CmsKit.Pro.Public.Web
  • Volo.CmsKit.Pro.Public.Application
  • Volo.CmsKit.Pro.Public.HttpApi

Thank you liangshiwei.

Hi Vipinthachinari,

You can achieve the requirement of updating the data of a widget whenever an API call occurs (or an entity change), by using the built-in event bus mechanism. You may refer this https://docs.abp.io/en/abp/latest/Local-Event-Bus for event-bus implementation

regards, Anjali

Hi Anjali, I have developed an application with a local event bus to handle entity change events on the server side. Now, I'm looking to understand how to subscribe to and consume these events from the client side.Or whether it's possible to use these events to trigger a refresh URL or update widget data?

https://docs.abp.io/en/abp/latest/UI/AspNetCore/Widgets#refreshurl

Hi Anjali, Actually my requirement is, Whenever an API call occurs (or an entity change), I need to update the data of a widget accordingly. Is it possible with this?

module dependencies

Hi, After adding typeof(CmsKitProPublicWebModule) got like this

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