Hi,
Did I start getting this error:
Azure Web Sites environment detected. Using 'C:\home\ASP.NET\DataProtection-Keys' as key repository; keys will not be encrypted at rest.
[12:54:38 INF] Saving external localizations...
[12:54:39 INF] Initialized all ABP modules.
[12:54:39 INF] Initializing UI Database
[12:54:43 ERR] ABP-LIC-ERROR - License check failed for 'Volo.Abp.OpenIddict.Pro.EntityFrameworkCore-v7.2.3.0'.
You need to log in using the command abp login <username>.
For more information, contact to license@abp.io.
I need to use Development environment in development environment in azure appservices.
How to make?
Hi,
Let's use the users screen as an example.
In the default-users-entity-props.ts class I set the following surname property to visible false when tenant.
{ type: ePropType.String, name: 'surname', displayName: 'AbpIdentity::Surname', sortable: true, columnWidth: 250, visible: data => Boolean(!data.record.tenantId), }
In the Html of the extensible-table, where I displayed the column name I put a *ngIf="prop.visible"
<ng-container ngFor="let prop of propList; let i = index; trackBy: trackByFn"> <ngx-datatable-column [width]="columnWidths[i + 1] || 200" [name]="prop.displayName | abpLocalization" [prop]="prop.name" [sortable]="prop.sortable" ngIf="prop.visible">
<ng-template let-row="row" let-i="index" ngx-datatable-cell-template>
<ng-container *abpPermission="prop.permission; runChangeDetection: false">
<ng-container *ngIf="row['_' + prop.name]?.visible">
<div *ngIf="!row['_' + prop.name].component; else component"
[innerHTML]="row['_' + prop.name]?.value | async"
(click)="prop.action && prop.action({ getInjected: getInjected, record: row, index: i })"
[ngClass]="entityPropTypeClasses[prop.type]"
[class.pointer]="prop.action">
</div>
</ng-container>
<ng-template #component>
<ng-container *ngComponentOutlet="row['_' + prop.name].component; injector: row['_' + prop.name].injector">
</ng-container>
</ng-template>
</ng-container>
</ng-template>
</ngx-datatable-column>
</ng-container>
If you set the value of prop.visible to print, you will notice that it is returning like this: _ => true instead of true and when it is false, print all the code that is inside the visible
Hi,
Please check here https://support.abp.io/QA/Questions/245/ABP-LIC-0008---License-check-failed-for-'XXXXX'
please do let me know if this helps you,
Thank you, Anjali
Hi,
So, I'm not publishing.. I'm running locally. This client of ours will provide maintenance on this project that we are doing based on ABP.
hi
I created one of them and the others were created automatically. What are these two automatically created for?
Abp will have some built-in jobs, which is what you see.
I would also like to know if I created the classes related to Jobs in the correct places?
You can define and implement it in domain(domain.shared). Of course, it is not wrong in the application layer.
3-) The AbpBackgroundJobs table what is this table for and how does it work to fill it in and what is its purpose?
You don't need to care about it. abp framework will use it.
Can I open the hangfire dashboard in angular?
hi
I created one of them and the others were created automatically. What are these two automatically created for?
Abp will have some built-in jobs, which is what you see.
I would also like to know if I created the classes related to Jobs in the correct places?
You can define and implement it in domain(domain.shared). Of course, it is not wrong in the application layer.
3-) The AbpBackgroundJobs table what is this table for and how does it work to fill it in and what is its purpose?
You don't need to care about it. abp framework will use it.
Hi,
I would still like to know what the first 2 processes and the second automatically created by ABP are for. If possible, how do I disable them?
Hi,
I don't think we understand each other...
My company created a project in ABP in version 7.2.3 with the business license for an X client.
This client X, after we deliver the project and consequently the source code, will be responsible for maintaining the system.
When I simulated the situation of this client
To run a project, created with the business license, do I need to be logged in to ABP locally via the terminal?
Hi,
Regarding BackgroundJobs, I did it according to the documentation and integration with hangfire. However, it does not appear on the hangfire dashboard.
can you help me?
hi
. However, it does not appear on the hangfire dashboard.
Is the job executed?
Hi,
Yes
Hi,
I don't understand, ABP Suite doesn't support Macos?
hi
There is
RoleValidatorservice that you can override or remove.https://github.com/dotnet/aspnetcore/blob/release/7.0/src/Identity/Core/src/IdentityServiceCollectionExtensions.cs#L85 https://github.com/dotnet/aspnetcore/blob/release/7.0/src/Identity/Extensions.Core/src/RoleValidator.cs#L34
Hi,
But where would I put the RoleValidor to replace within this identityPro structure?