Activities of "liangshiwei"

I see that your screenshot contains .Web project. Are you sure you are creating a solution without a user interface?

For --no-ui option:

  1. Set Acme.IssueManagement.HttpApi.Host as startup project and set Acme.IssueManagement.HttpApi.Host as PMC defualt project. Then execute update-database command.
  2. Set Acme.IssueManagement.IdentityServer as startup project and set Acme.IssueManagement.IdentityServer as PMC defualt project. then execute update-database command.

For has user interface:

Set Acme.IssueManagement.Web.Unified as startup project and set Acme.IssueManagement.Web.Unified as PMC defualt project. Then execute update-database command.

Hi, Can you provide steps to reproduce?

Hi , You can download the source code of the module in abp suite. See https://support.abp.io/QA/Questions/122/Cant-get-source-code-for-AuditLogsAppService#answer-deddd1bc-4fc6-194a-3553-39f4bd193c94

Hi @rachanee-mwp,

Is your database connection string correct?

abp has a module for managing email settings, but not public yet. I will reply to you after confirmation.

Yes this is enough. If you still have problems, I can help you remotely.

For quartz, it is two different jobs.

If you want to add only one background worker instance, you should specify Job Identity, See https://www.quartz-scheduler.net/documentation/quartz-3.x/tutorial/index.html for more information.

But if you use persistent storage, it throws an exception, you can add the following code to your project : https://github.com/liangshiw/AbpVnextQuartzBackground/blob/master/QuartzBackgroundWorkerManager.cs.

You need to pay attention, if your periodic work is missed multiple times, it will only try to execute it for you once.

You can track this PR : https://github.com/abpframework/abp/pull/3382.

Feature system has not documented yet. It's purpose and usage is similar to https://aspnetboilerplate.com/Pages/Documents/Feature-Management.

You can also refer to: https://github.com/abpframework/abp/blob/dev/docs/en/AspNet-Boilerplate-Migration-Guide.md#feature-management.

For tenants with database connection strings, the data is kept in a separate database. The information of the tenant itself is stored in the host database (connection string, tenant name, etc.).

Answer

Hi @ididsbury,

Do you mean to add a toolbar to a custom page?

If you use a layout page, the toolbar will be displayed on your page, You only need to add toolbar contributors according to the documentation.

If you are not using a layout page, you can add a toolbar conponent to page , like this.

If you want a new toolbar, you can add your own toolbar component, like this, The important thing is StandardToolbars.Main, you need to replace it with your own toolbar constant.

Showing 5901 to 5910 of 5933 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11