hi
Can you change the logs level and share the logs again?
Thanks.
https://support.abp.io/QA/Questions/7383/Remember-me-does-not-work-properly-during-development#answer-3a134c11-55b1-b7cc-7378-4891bda51064
hi
The module that has the PreConfigure<AbpOpenIddictWildcardDomainOptions>(options => code.
ok, You can set the log level to Debug to see more logs.
public class Program
{
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
if I run another app at the same time (also localhost, different port)
The localhost cookies will not distinguish between ports.
You can try configuring different applications to use different cookie names, or use a local domain(https://readme.localtest.me/) name instead of localhost to prevent cookie conflicts between multiple different applications.
hi
I think the cookies of localhost domain have been deleted by the browser. You can check the cookies.
hi
Can you share some code or a simple project to reproduce this?
liming.ma@volosoft.com
hi
Can you share some screenshot?
Thanks
hi
Current JobStorage instance has not been initialized yet. You must set it before using Hangfire Client or Server API. For .NET Core applications please call the IServiceCollection.AddHangfire extension method from Hangfire.NetCore or Hangfire.AspNetCore package depending on your application type when configuring the services and ensure service-based APIs are used instead of static ones, like
IBackgroundJobClientinstead ofBackgroundJoband IRecurringJobManager instead of RecurringJob.
context.Services.AddHangfireServer();fresh project by https://wetransfer.com/liming.ma@volosoft.com
Thanks