Array ( [mihpayid] => 403993715515489558 [mode] => CC [status] => success [unmappedstatus] => captured [key] => DgdPazAK [txnid] => CHN00001140 [amount] => 5000.0 …
Read MorePayUMoney
PayUMoney – Testing Credentials for payumoney
## PayUMoney Payment Gateway Testing Credentials:: Below is the test card details for doing a test transaction in the testing mode. Credit Card Number …
Read Moredifference between Payumoney and payubiz payment gateway
PayU Payment Gateway has two unit 1. PayUbiz 2. Payumoney PayUbiz: It provides fast payment sattlement. When user paid at that time payment transferred to …
Read MoreWhat is responded parameter after payment by PayUbiz payment gateway
Response parameters Below are the response parameters that is posted by PayU to Merchant 1 . mihpayid: It is a unique reference number created for …
Read Morewhat is POST request data and its meaning for PayUbiz
Post Request (Non-seamless) Below parameters needs to be posted by Merchant to PayU in Transaction Request key (Mandatory) : This parameter is the unique Merchant …
Read Morewhat is the test credentials for PayUMoney
PayUMoney Test Mode er credentials:: Test Card Name: any name Test Card Number: 5123456789012346 Test CVV: 123 Test Expiry: May 2017
Read MoreWhat is PayUMoney returned value after success in php
All value is posted. The datas are: Array ( [mihpayid] => 403993715514357757 [mode] => DC [status] => success [unmappedstatus] => captured [key] => DgdPazAK [txnid] …
Read MoreHow to make hash in Payumoney integration using php
$hash = ”; $hasTemp = $key.”|”.$txnid.”|”.$amount.”|”.$productinfo.”|”.$firstname.”|”.$email.”|”.$udf1.”|”.$udf2.”|”.$udf3.”|”.$udf4.”|”.$udf5.”|”.$udf6.”|”.$udf7.”|”.$udf8.”|”.$udf9.”|”.$udf10; $hasTemp .= “|”.$SALT; $hash = strtolower(hash(‘sha512’, $hasTemp)); Download All necessary document from PayUMoney Website https://www.payumoney.com/websiteintegration.html
Read MoreHow to integrate PayUMoney Payment Gateway in php
<?php // Merchant key here as provided by Payu $MERCHANT_KEY = “bdASxs”; // Merchant Salt as provided by Payu $SALT = “tghfYhd”; // End point …
Read More