hi
Did you migrate the database? Run DbMigrator to migrate and seed the database.
Is the Redis run correct on localhost:6379?
hi
Just re-run the abp generate-proxy command.
https://docs.abp.io/en/abp/latest/API/Static-CSharp-API-Clients#code-generation
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.