hi
It seems your app can't connect the Redis and DataBase. Please check your configution.
---> StackExchange.Redis.RedisConnectionException: It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 10s ago, v: 2.2.4.27433
[ERR] An error occurred using the connection to database 'Firebird_Administration' on server 'localhost,1434'. 2022-07-08 10:25:56.637 +10:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Firebird.AdministrationService.EntityFrameworkCore.AdministrationServiceDbContext'. Microsoft.Data.SqlClient.SqlException (0x80131904): Connection Timeout Expired. The timeout period elapsed while attempting to consume the pre-login handshake acknowledgement. This could be because the pre-login handshake failed or the server was unable to respond back in time. The duration spent while attempting to connect to this server was - [Pre-Login] initialization=3834; handshake=11250; ---> System.ComponentModel.Win32Exception (258): The wait operation timed out.
hi liming.ma@volosoft.com
hi
What theme do you want to custom? Angular or MVC?
hi
You can try to update VS, There is no problem if the dotnet build works.
hi
Please check the Application Event Logs
https://www.devtopics.com/how-to-check-the-application-event-log-for-errors/ https://docs.microsoft.com/en-us/aspnet/core/test/troubleshoot-azure-iis?view=aspnetcore-7.0#50030-in-process-startup-failure
hi
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor#L49 https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor#L166
Add this to your component base class.
protected virtual Task ClosingCreateModal(ModalClosingEventArgs eventArgs)
{
// cancel close if clicked outside of modal area
eventArgs.Cancel = eventArgs.CloseReason == CloseReason.FocusLostClosing;
return Task.CompletedTask;
}
protected virtual Task ClosingEditModal(ModalClosingEventArgs eventArgs)
{
// cancel close if clicked outside of modal area
eventArgs.Cancel = eventArgs.CloseReason == CloseReason.FocusLostClosing;
return Task.CompletedTask;
}
You add <Modal @ref="xxxx" Closing="@ClosingEditModal"> or <Modal @ref="xxxx" Closing="@ClosingCreateModal"> to your model.
ok I will check the code.
Yes, We will update this in the next patch version.
hi
Please try to replace all UseSwaggerUI with UseAbpSwaggerUI in your project.