This may take a while. Please create a template project. Then upload it to a Github private repository. Then invite https://github.com/maliming to join.
I will add the code above.
So your problem is solved. Right?
hi
Can you try to create a new microservice project and check the builtin configuration files?
hi
We don't have such a sample. You can try the steps and code above.
hi
I have no idea about this. You can get the pfx file from a virtual file instead of a folder.
https://abp.io/docs/latest/framework/infrastructure/virtual-file-system
hi
Try to clear Redis.
If still not working please share the logs of authserver.
Thanks.
hi
Can you share your project source code?
I will try to deploy it to the IIS virtual app directory and then fix the error I see.
Thanks.
liming.ma@volosoft.com
hi
Please set the log level to debug and reproduce the error, then share the logs.
Thanks
liming.ma@volosoft.com
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
The most important where and how will we add PayU credentials for MVC tiered web application
Add typeof(AbpPaymentPayuDomainModule) Volo.Payment.Payu.Domain
to your api.host project
Add typeof(AbpPaymentPayuWebModule) Volo.Payment.Payu.Web
to your web project
https://abp.io/packages?moduleName=Volo.Payment
Add JSON below to your appsettings.json
of api.host
and web
projects.
"Payment": {
"Payu": {
"Merchant": "OPU_TEST",
"Signature": "SECRET_KEY",
"LanguageCode": "en",
"CurrencyCode": "USD",
"VatRate": "0",
"PriceType": "GROSS",
"Shipping": "0",
"Installment": "1",
"TestOrder": "1",
"Debug": "1",
"Recommended": "true",
"ExtraInfos": [
"PAYU accepts Visa and MasterCard."
],
"PrePaymentCheckoutButtonStyle": "vst-btn-continuetocheckout"
}
}
You can give it a try and feedback if you have any problem.
Thanks.