Base solution for your next web application

Activities of "QuickApp"

Hi @ismcagdas

I have forwarded the e-mail I shared the information before to you again.

Best regards

If there is a tenant, is it not necessary to add a tenantId in the SQL query? As you said, if there is no tenant, it must be logged in as a host.

In the example I gave, there is a tenant and it enters as a host. Isn't this a bug?

Hi @musa.demir I will follow the situation from the relevant link, thanks.

Where can I find the parameters you request? When I check the database, the user appears to be approved.

However, the tenant informed us that he received an error message and no activation.

Hi @ismcagdas, I have replied to your mail. Yes, normally it should not write cookies. But we have such a situation.

Best regards.

Hi @ismcagdas, I sent the relevant email.

Best regards.

HangfireService.cs (Web.Core) public class HangfireService { public static void InitializeJobs() { RecurringJob.AddOrUpdate<QTenantInvoiceJob>(job => job.Execute(0), $"00 00 {QCloudConsts.InvoiceCreationDay} * *"); RecurringJob.AddOrUpdate<QTenantLockJob>(job => job.Execute(0), $"00 01 {QCloudConsts.NotPaidInvoiceAndLockingDay} * *"); RecurringJob.AddOrUpdate<FreeEditionControlJob>(job => job.Execute(0), "00 02 * * *"); return; } }

Startup.cs (Web.Host) public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerFactory loggerFactory) { .... if (WebConsts.HangfireDashboardEnabled) { //Hangfire dashboard &server(Enable to use Hangfire instead of default job manager) app.UseHangfireDashboard(WebConsts.HangfireDashboardEndPoint, new DashboardOptions { Authorization = new[] {new AbpHangfireAuthorizationFilter(AppPermissions.Pages_Administration_HangfireDashboard)} }); app.UseHangfireServer(); HangfireService.InitializeJobs(); } .... }

Thank you for your reply @ismcagdas

Hi @ismcagdas

What exactly should I disable in appsettings.json?

Answer

Hi @ismcagdas Yes, when I checked I saw that this page exists.

Showing 1 to 10 of 22 entries