Activities of "maliming"

So your problem is solved. Right?

hi

Can you try to create a new microservice project and check the builtin configuration files?

Answer

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

Does this code execute in your current environment(if (!hostingEnvironment.IsDevelopment()))?

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();

Answer

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.

hi

You can update your OpenIddictDataSeedContributor to add custom grant type to the application/client.

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