- ABP Framework version: v8.2.0
- UI Type: MVC
- Database System: EF Core (SQL Server)
- Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
- Exception message and full stack trace:
- Steps to reproduce the issue:
I want to configure and integrate PayU payment gateway in my solution. don't want to give option for gateway selection i only have PayU as gateway. I have installed the module in all the projects. How can i configure it in my web.public project pages.
40 Answer(s)
-
0
hi
What is the submit URL? is it
HTTPS
? -
0
hi
What is the submit URL? is it
HTTPS
?Yes its https://localhost:44359/paymentsuccess
-
0
-
0
it shows nothing on console, not even a single request in network
-
0
hi
How can I reproduce this?
-
0
You will need to complete payu payment gateway payment it will automatically redirect to the desired success or failure url. once it is redirected it will show this page https://docs.payu.in/docs/integrate-with-payu-hosted-checkout
-
0
Can you push your code to a Github repository?
-
0
Sorry but every thing is implemented on our main project. instead can you tell me how can i call a controller on page load itself with any type of parammeter. i believe payu posts its response. If I will be able to call controller method onload itself i think my problem will be solved.
-
0
hi
how can i call a controller on page load itself with any type of parameter.
You can add a
from
to your page and submit theform
via JS code. -
0
Hi previously i have added payment module. Which resulted in some database changes. how can i remove those changes without affecting changes done after
-
0
hi
You can remove all payment module dependencies, then add new ef core migrations & update the database.
-
0
I have used command line to add module can you please suggest what to remove or what not to if possible or can give some reference.
-
0
hi
The package name of payment start with
Volo.Payment
Please global search this keyword in your solution.
Remove them from the
csproj
files, then build the solution. You will get some errors. Remove the payment-related code from the cs files until the build is successful.Finally, add new ef core migrations & update the database.
-
0
Thanks this worked
-
0
Great