payment-gateway

Mvc application being redirected to login page when accessing third party dll function

我的未来我决定 提交于 2019-12-11 14:47:13
问题 I'm using a third party dll in my MVC3 application. When using the dll at localhost(my PC) it works great. But when I upload it to web server(shared hosting) I encounter a problem. The application works fine when not using the functions in the dll. But when any function of the third party dll is called upon the page is redirected to the login page. NOTE: I'm using Forms Authentication. I had set folder properties and set <identity impersonate="true"> for the application to access files and

Session variables are not working in chrome

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 13:55:55
问题 I have checked through many process but still there is a problem. I am creating a session variable and it is working fine in all the pages, but when I am trying to pass the session["amt"] to payment gateway its not working only in chrome , but its working fine in Mozilla and IE . Can any one please suggest me where am I doing mistake? 回答1: Disable all Chrome Extensions. Close your Chrome browser. (Mac Os X: Stop Chrome with CMD+Q) Then try again. If the problem is solved: turn on your Chrome

How do I turn off PayPal IPN in Magento?

萝らか妹 提交于 2019-12-11 11:04:36
问题 When people make a successful payment with PAyPal in my Magento webshop it automatically creates an invoice with unique invoice number. For bookkeeping reasons, I have to disable it. I've been searching for a few weeks now but I still haven't found the solution for this problem. What I know so far is that this is caused by IPN. The problem is I don't know how to turn this off without damaging my shop or paypal payments. Some more specs: - Version: Magento 1.6.2.0 - Standard paypal Files

Getting status on canceled/expired credit cards for recurring billing with authorize.net

余生长醉 提交于 2019-12-11 09:33:49
问题 We're setting up a system that will use the XML API for Automated Recurring Billing with Authorize.net. It looks simple enough to set up a recurring billing. But we have two features that do not seem obvious * providing customers with details on individual payments * providing notification to customers of expired/canceled cards Anyone familiar with a mechanism to retrieve this info in automated form? We're considering * just listing out assumed payments based on our own calculations the start

Change default order status for COD payment gateway based on user role in Woocommerce

微笑、不失礼 提交于 2019-12-11 08:38:58
问题 In Woocommerce, when the payment option is COD, the orders go directly to the "Processing" state. Source: https://docs.woocommerce.com/document/managing-orders/#prettyPhoto I need this to work like this, except when the client's role is "X". I have seen that this can be solved with this code: function cod_payment_method_order_status_to_onhold( $order_id ) { if ( ! $order_id ) return; $order = wc_get_order( $order_id ); if ( get_post_meta($order->id, '_payment_method', true) == 'cod' ) $order-

(13) The merchant login ID or password is invalid or the account is inactive.(usig Aim method for authorize.net)

为君一笑 提交于 2019-12-11 08:08:52
问题 So when i am defining action as payment.php all working fine but as soon as i define action post_url its giving me this error. So please assist me. all the log in credential for test account is ok and checked. here is my check out.php form action <?php include_once('payment.php'); ?> <form method="post" action='<?php echo $post_url; ?>'> here is my payment.php file contain all the information about url and key values <?php //log in credentials and key values $LOGINKEY = '24Xd2WdY';// x_login

PayPal's Payflow Gateway SDK Example not working

蹲街弑〆低调 提交于 2019-12-11 07:34:43
问题 I downloaded the .NET SDK for Payflow Gateway and followed these instructions on setting up my Payflow Gateway test account, then modified two lines of DOSecureTokenAuth.cs, the User and Connection variables: UserInfo User = new UserInfo("myacctname", "myacctname", "PayPal", "passwd"); PayflowConnectionData Connection = new PayflowConnectionData( "pilot-payflowpro.paypal.com", 443); When I run DOSecureTokenAuth.cs a commandline window opens saying: --------------------------------------------

Unable to integrated react-paypal-button-v2 in react app

穿精又带淫゛_ 提交于 2019-12-11 07:14:13
问题 I am trying to integrate [react-paypal-button-v2][1] in my react app but after filling the details it is showing Something went wrong <PayPalButton amount="0.01" onSuccess={(details, data) => { console.log(details,"data") alert("Transaction completed by " + details.payer.name.given_name); // OPTIONAL: Call your server to save the transaction // return fetch("/paypal-transaction-complete", { // method: "post", // body: JSON.stringify({ // orderID: data.orderID // }) // }); }} catchError={(err)

ccavenue get payment status from response url

空扰寡人 提交于 2019-12-11 06:45:02
问题 I am using iframe approach in a .net mvc app and we are setting one return url while sending the request. My question is how can i know the payment status & ccavenue payment reference no and other payment related params from response url My retun url action is something like this [HttpGet] public ActionResult ResponseCCPayment() { //but how to read reposne params from here return Content("got response frm ccveue"); } From CCAvenue documentation i can see redirect_url CCAvenue will post the

Add a custom payment gateway with additional radio buttons in Woocommerce

梦想的初衷 提交于 2019-12-11 06:26:40
问题 I am developing a custom payment method for woocommerce follogin is my code : class WC_Gateway_Custom extends WC_Payment_Gateway { public $domain; /** * Constructor for the gateway. */ public function __construct() { $this->domain = 'custom_payment'; $this->id = 'custom'; $this->icon = apply_filters('woocommerce_custom_gateway_icon', ''); $this->has_fields = false; $this->method_title = __( 'Custom', $this->domain ); $this->method_description = __( 'Allows payments with custom gateway.',