To update your version to v4.3.x for both ABP CLI and ABP Suite run the following command
dotnet tool update -g Volo.Abp.Cli --version 4.3.0-rc.1
abp suite update --preview
or
Run this PowerShell script to update both the CLI and Suite to the latest including the preview versions.
v4.3 Preview ABP Framework Version Notes https://blog.abp.io/abp/ABP-Framework-4.3-RC-Has-Been-Published
v4.3 Preview ABP Commercial Version Notes https://blog.abp.io/abp/ABP-Commercial-4.3-RC-Has-Been-Published
From 4.x to 4.3 Migration Guide https://docs.abp.io/en/commercial/4.3/migration-guides/v4_3
188 Answer(s)
-
0
-
0
-
0
/identity-server/api-resources
No duplicate resources there, it really is a weird question
-
0
-
0
UseDatabase
@Dicky.tech,
You need to add the https://www.nuget.org/packages/Volo.Abp.BlobStoring.FileSystem package to be able to use File System. See https://docs.abp.io/en/abp/latest/Blob-Storing-File-System
-
0
Hi @ilitzy
Can you please provide the type of your application. Db, UI, Tiered etc?
-
0
Hi, When i create module template with suite, in host folder for Blazor.Server host project not created and preconfigured will you add that next release?
-
0
Hi,
When i create module template with suite, in host folder for Blazor.Server host project not created and preconfigured will you add that next release?as I remember this is fixed in the next version
-
0
Dears, any clue regarding this issue, I am stack with this, I read the documentation several times and I do not have the source code of commercial module,
Thanks
Issue with payment module with v4.3.0-rc.1
- ABP Framework version: v4.3.0-rc.1
- UI type: Angular ( but trying with MVC for now)
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Steps to reproduce the issue:
1- I installed payment commercial module,
2- migrated db
3- setup appsettings for payment providers
4- added an action as sample suggested: https://docs.abp.io/en/commercial/latest/modules/payment
5- I run system and tried the action but I got that error!- Exception message and stack trace:
An unhandled exception occurred while processing the request.
SqlException: Invalid object name 'PayPaymentRequests'.
Microsoft.Data.SqlClient.SqlCommand+<>c.<ExecuteDbDataReaderAsync>b__169_0(Task<SqlDataReader> result)
DbUpdateException: An error occurred while updating the entries. See the inner exception for details.
Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)SqlException: Invalid object name 'PayPaymentRequests'.
Microsoft.Data.SqlClient.SqlCommand+<>c.<ExecuteDbDataReaderAsync>b__169_0(Task<SqlDataReader> result)
System.Threading.Tasks.ContinuationResultTaskFromResultTask<TAntecedentResult, TResult>.InnerInvoke()
System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, object state)
System.Threading.Tasks.Task.ExecuteWithThreadLocal(ref Task currentTaskSlot, Thread threadPoolThread)
Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)
Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)
Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)did you add migration after adding the module? add-migration
I did now, the system runs but I got redirected to another unexist page:
I got this error after submitting the payment request:
No webpage was found for the web address: https://localhost:44342/Payment/GatewaySelection?paymentRequestId=a9b3d199-9646-9251-64f3-39fbebed14a0
I followed the steps : ABP Framework version: v4.3.0-rc.1 UI type: Angular ( but trying with MVC for now) DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): no Steps to reproduce the issue: 1- I installed payment commercial module, 2- add migration and then migrated db 3- setup appsettings for payment providers 4- added an action as sample suggested: https://docs.abp.io/en/commercial/latest/modules/payment 5- I run system and tried the action but I got that error!
-
0
Hi,
When i create module template with suite, in host folder for Blazor.Server host project not created and preconfigured will you add that next release?as I remember this is fixed in the next version
on rc-2 not work
-
0
Hello @Cotur,
The settings are: Blazor+Mongo+separate Identity Apart from that, I upgraded an existing project I am working on to v4.3-rc.2 and there stil are problems with the date picker, in the sense that it allows you to write a year with 6 digits, and I choose a date eg:02.01.2021 I saves it inside Mongo as (chosen date-1) on the 01.01.2021 and it is returned that way in the Blazor Grid The setting is the same: tiered , Blazor+Mongo+separate Identity
Thank you in advance!
-
0
Me again, @Cotur :) More details on the date piker thing!
So, I altered the CreateAsync function in AppService.cs with an extra switch statement This switch saves dates ok except for: 30 and 31, in which case it saves dates :29 and 30 instead. If I comment out the first 2 cases of the switch I get an error (only for Day=30 or 31)
I don't know if this aspect is related to your framework or if it has to do with Blazorise, but please fix this. Thank you again and I appologise for nagging, but our customers will not accept this behaviour!
-
0
Hi, when I add Cms Kit manually to an existing project it fails updating the Web project.
Command line:
abp add-module Volo.CmsKit
Error: *[1/4] 🔍 Resolving packages... [2/4] 🚚 Fetching packages... error Command failed. Exit code: 128 Command: git Arguments: ls-remote --tags --heads ssh://git@github.com/seonim-ryu/Squire.git Directory: (my project directory)/aspnet-core/src/(project name).Web Output: Host key verification failed. fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.*
Anything I can do to work around this? All of my projects in the solution have the CmsKit dependencies except for the main web project, and steps 3 and 4 haven't completed either.
-
0
Hi @MILLENNIUM, I've reproduced your steps. I've not encountered any problem. Can you check you configure the
PaymentWebOptions
? You can configure the options like below. And also please be sure about using the sample code in OnPost method of your razor page. Because if you use the sample code on OnGet method it gives a status code as 400.Configure<PaymentWebOptions>(options => { options.RootUrl = configuration["AppSelfUrl"]; options.CallbackUrl = configuration["AppSelfUrl"] + "/PaymentSucceed"; options.GatewaySelectionCheckoutButtonStyle = configuration["Payment:GatewaySelectionCheckoutButtonStyle"]; });
-
0
Use suite to create a new MVC project, install the payment module, and add the calling code on the home page, as shown in the figure below,
After running, jump to the payment method selection page, but it is a blank error page https://localhost:44360/Payment/GatewaySelection?paymentRequestId=39fc04c1-7784-9498-164f-3734160b648f
I look at the source code of the payment method selection page, and there is no specific implementation
Is this a bug?
Hi @lataing, as you mentioned OnGet method of GatewaySelection page returns BadRequest. This is an expected behavior. Because the
paymentRequestId
must be specified, if it's not specified then this means an invalid request has been made.Can you please be sure about using the sample code in OnPost method of your razor page? Because if you use the sample code on OnGet method it gives a status code as 400.
-
0
@ilitzy we'll try to reproduce the datetime issue
-
0
@chofoza , that's the open-source package. you need to add the CmsKit Pro package to your commercial project.
abp add-module Volo.CmsKit.Pro
-
0
-
0
It seems the commercial template still not updated
-
0
hi cellero and trendline
Open source version is done, commercial Will be done in 30-60 minutes.
-
0
-
0
-
0
abp suite v4.3 not create module host project for blazor server
-
0
-
0