Activities of "maliming"

Please share your RabbitMQ configuration in appsettins.json

Yes, I have downloaded your logs.

The main problem currently is RabbitMQ

No connection could be made because the target machine actively refused it.

What is your RabbitMQ configuration? Does it need a username and password?

hi

However, once I installed the CHAT source, I am no longer able to login again. This is really buggy.

Can you share the logs?

The logs you have shared show the RabbitMQ error causing the 500 error.

What is your RabbitMQ configuration? Does it need username and password?

RabbitMQ.Client.Exceptions.BrokerUnreachableException: None of the specified endpoints were reachable ---> System.AggregateException: One or more errors occurred. (Connection failed) ---> RabbitMQ.Client.Exceptions.ConnectFailureException: Connection failed ---> System.Net.Sockets.SocketException (10061): No connection could be made because the target machine actively refused it.

We will fix this by https://github.com/abpframework/abp/pull/20454

Your question ticket has been refunded.

https://abp.io/docs/latest/release-info/migration-guides/abp-8-2-blazor-web-app

Answer

hi

If you only have one payment method, the GatewaySelection page automatically redirects you to PaymentUrl.

https://abp.io/docs/commercial/8.1/modules/payment

https://abp.io/docs/8.3/release-info/migration-guides/abp-8-3

ABP Version 8.2 Migration Guide

This document is a guide for upgrading ABP v8.x solutions to ABP v8.2. There are some changes in this version that may affect your applications, please read it carefully and apply the necessary changes to your application.

Updated target frameworks to net8.0 for template projects

TargetFrameworks of the following template projects are upgraded to net8.0:

  • *.Application.Contracts
  • *.Domain.Shared
  • *.Domain
  • *.MongoDB
  • *.HttpApi.Client
  • *.Host.Shared (for module template)

Before this version, all of the projects above were targeting multiple frameworks (netstandard2.0, netstandard2.1 and net8.0), with this version, we started to only target net8.0 for these template projects. Note that, all other shared libraries still target multiple frameworks.

This change should not affect your pre-existing solutions and you don't need to make any changes in your application. See the PR for more info: https://github.com/abpframework/abp/pull/19565

Upgraded AutoMapper to 13.0.1

In this version, AutoMapper library version upgraded to 13.0.1. See the release notes of AutoMapper v13.0.1 for more information.

Added default padding to .tab-content class for Basic Theme

In this version, default padding (padding-top: 1.5rem and padding-bottom: 1.5rem) has been added to the tab-content for the Basic Theme. See #19475 for more information.

Moved members page directory for Blogging Module

With this version on, ABP Framework allows you to use single blog mode, without needing to define a blog and a prefix. With this change, the following namespace changes were done:

  • Volo.Blogging.Pages.Blog -> Volo.Blogging.Pages.Blogs
  • Volo.Blogging.Pages.Members -> Volo.Blogging.Pages.Blogs.Members (members folder)

If you haven't overridden the pages above, then you don't need to make any additional changes. See #19418 for more information.

Removed FlagIcon property from the ILanguageInfo

The FlagIcon property has been removed from the ILanguageInfo interface since we removed the flag icon library in the earlier versions from all of our themes and none of them using it now.

If the flag icon has been specified while defining the localization languages, then it should be removed:

        Configure<AbpLocalizationOptions>(options =>
        {
-           options.Languages.Add(new LanguageInfo("hi", "hi", "Hindi", "in"));
+          options.Languages.Add(new LanguageInfo("hi", "hi", "Hindi"));
             //...
        }

Blazor Full-Stack Web UI

In this version, ABP Framework provides a new UI option called Blazor Full-Stack WebApp. We have already created an introduction/migration guide for you to check it: Migrating to Blazor Web App

Please read the documentation carefully if you are considering migrating your existing Blazor project to Blazor WebApp.

Session Management Infrastructure

The Session Management feature allows you to prevent concurrent login and manage user sessions.

In this version, a new entity called IdentitySession has been added to the framework and you should create a new migration and apply it to your database.

hi

We will fix this issue.

hi

You can use @attribute [Authorize(AbpSolution1Permissions.Books.Default)] in your component.

eg https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor#L2

Showing 451 to 460 of 7734 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 13:33