Invalid Digital Order MIGS Payment GatewayIs it possible to create an iframe-based payment method in Magento?Need help returning to Magento & updating order status after 3rd party payment gatewayMagento custom payment gateway Void invoiceHow to change the order status cancel in magento after payment cancelled from MIGS Payment Gateway?Paypal Website Payments Pro Hosted Solution gives pending payment status in magentoMasterCard internet Gateway Service (MiGS) & Virtual Payment Client (VPC) Extension neededMiGS payment gateway is not appearing in Payment Methods section in One Page CheckoutMIGS Payment Gateway IntegrationHow to post data to a payment provider when placing an order in Magento 2
Adding span tags within wp_list_pages list items
"to be prejudice towards/against someone" vs "to be prejudiced against/towards someone"
What are the differences between the usage of 'it' and 'they'?
Is it legal for company to use my work email to pretend I still work there?
What's the output of a record cartridge playing an out-of-speed record
Minkowski space
Font hinting is lost in Chrome-like browsers (for some languages )
What's the point of deactivating Num Lock on login screens?
Fencing style for blades that can attack from a distance
What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)
Why do falling prices hurt debtors?
LaTeX closing $ signs makes cursor jump
Why doesn't H₄O²⁺ exist?
What is the offset in a seaplane's hull?
To string or not to string
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Schoenfled Residua test shows proportionality hazard assumptions holds but Kaplan-Meier plots intersect
How old can references or sources in a thesis be?
Arthur Somervell: 1000 Exercises - Meaning of this notation
How much RAM could one put in a typical 80386 setup?
Dragon forelimb placement
String Manipulation Interpreter
tikz: show 0 at the axis origin
Invalid Digital Order MIGS Payment Gateway
Is it possible to create an iframe-based payment method in Magento?Need help returning to Magento & updating order status after 3rd party payment gatewayMagento custom payment gateway Void invoiceHow to change the order status cancel in magento after payment cancelled from MIGS Payment Gateway?Paypal Website Payments Pro Hosted Solution gives pending payment status in magentoMasterCard internet Gateway Service (MiGS) & Virtual Payment Client (VPC) Extension neededMiGS payment gateway is not appearing in Payment Methods section in One Page CheckoutMIGS Payment Gateway IntegrationHow to post data to a payment provider when placing an order in Magento 2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I use MasterCard Internet Gateway Service (MIGS) - Hosted Server (3-Party Payments) http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE
1: http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE module for payment.i configure all detail but after redirecting it to api.it gives Invalid Digital Order MIGS Payment Gateway error.
here is screenshot 
i don't know what is issue .i googled about this but not success.
magento-1.9 payment-gateway
add a comment |
I use MasterCard Internet Gateway Service (MIGS) - Hosted Server (3-Party Payments) http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE
1: http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE module for payment.i configure all detail but after redirecting it to api.it gives Invalid Digital Order MIGS Payment Gateway error.
here is screenshot 
i don't know what is issue .i googled about this but not success.
magento-1.9 payment-gateway
add a comment |
I use MasterCard Internet Gateway Service (MIGS) - Hosted Server (3-Party Payments) http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE
1: http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE module for payment.i configure all detail but after redirecting it to api.it gives Invalid Digital Order MIGS Payment Gateway error.
here is screenshot 
i don't know what is issue .i googled about this but not success.
magento-1.9 payment-gateway
I use MasterCard Internet Gateway Service (MIGS) - Hosted Server (3-Party Payments) http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE
1: http://www.appmerce.com/migs-vpc-mastercard-internet-gateway-service-magento.html#.VkWD9b_CeiE module for payment.i configure all detail but after redirecting it to api.it gives Invalid Digital Order MIGS Payment Gateway error.
here is screenshot 
i don't know what is issue .i googled about this but not success.
magento-1.9 payment-gateway
magento-1.9 payment-gateway
asked Nov 16 '15 at 4:34
srinath madusankasrinath madusanka
322619
322619
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
i have faced the same issue the problem is solved by removing the extra field value i was sending.
<input type="hidden" maxlength="15" value="SINGLE" name="vpc_TxSourceSubType">
after changing it's value to null solved my problem
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
i hope it will help other too.
in your can case i see your merchant account detail is not correct or you are missing the secret hash
make sure you must have these field
<input type="hidden" maxlength="250" value="https://migs.mastercard.com.au/vpcpay" size="63" name="virtualPaymentClientURL">
<input type="hidden" value="test" name="Title">
<input type="hidden" maxlength="8" size="20" value="1" name="vpc_Version">
<input type="text" maxlength="8" size="20" value="aces_code" name="vpc_AccessCode">
<input type="text" maxlength="16" size="20" value="your" name="vpc_Merchant">
<input type="hidden" maxlength="16" size="20" value="pay" name="vpc_Command">
<input type="hidden" maxlength="40" size="20" value="1467269875" name="vpc_MerchTxnRef">
<input type="hidden" maxlength="34" size="20" value="this is product-10" name="vpc_OrderInfo">
<input type="hidden" maxlength="10" size="20" value="70" name="vpc_Amount">
<input type="hidden" maxlength="5" size="20" value="en" name="vpc_Locale">
<input type="hidden" maxlength="250" value="return_url" size="63" name="vpc_ReturnURL">
<input type="hidden" maxlength="15" name="vpc_TicketNo">
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
1
thank you,i couldn't solve that.i had to get support them.i think this must help others to solve that kind of issue
– srinath madusanka
Jul 1 '16 at 3:14
I didn't have thevpc_TxSourceSubType. Even I added, the status is still HTTP Status 400
– Raptor
Aug 30 '16 at 4:10
@Raptor these are not necessary the problem with you access code..
– Qaisar Satti
Aug 30 '16 at 4:19
@QaisarSatti can you please have a look on this question please ? magento.stackexchange.com/questions/133684/…
– Raptor
Aug 30 '16 at 4:25
add a comment |
In my case I had to make sure vpc_MerchTxnRef has a unique value for each request. If I sent any duplicate value then the mentioned error comes otherwise it works well.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f90140%2finvalid-digital-order-migs-payment-gateway%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
i have faced the same issue the problem is solved by removing the extra field value i was sending.
<input type="hidden" maxlength="15" value="SINGLE" name="vpc_TxSourceSubType">
after changing it's value to null solved my problem
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
i hope it will help other too.
in your can case i see your merchant account detail is not correct or you are missing the secret hash
make sure you must have these field
<input type="hidden" maxlength="250" value="https://migs.mastercard.com.au/vpcpay" size="63" name="virtualPaymentClientURL">
<input type="hidden" value="test" name="Title">
<input type="hidden" maxlength="8" size="20" value="1" name="vpc_Version">
<input type="text" maxlength="8" size="20" value="aces_code" name="vpc_AccessCode">
<input type="text" maxlength="16" size="20" value="your" name="vpc_Merchant">
<input type="hidden" maxlength="16" size="20" value="pay" name="vpc_Command">
<input type="hidden" maxlength="40" size="20" value="1467269875" name="vpc_MerchTxnRef">
<input type="hidden" maxlength="34" size="20" value="this is product-10" name="vpc_OrderInfo">
<input type="hidden" maxlength="10" size="20" value="70" name="vpc_Amount">
<input type="hidden" maxlength="5" size="20" value="en" name="vpc_Locale">
<input type="hidden" maxlength="250" value="return_url" size="63" name="vpc_ReturnURL">
<input type="hidden" maxlength="15" name="vpc_TicketNo">
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
1
thank you,i couldn't solve that.i had to get support them.i think this must help others to solve that kind of issue
– srinath madusanka
Jul 1 '16 at 3:14
I didn't have thevpc_TxSourceSubType. Even I added, the status is still HTTP Status 400
– Raptor
Aug 30 '16 at 4:10
@Raptor these are not necessary the problem with you access code..
– Qaisar Satti
Aug 30 '16 at 4:19
@QaisarSatti can you please have a look on this question please ? magento.stackexchange.com/questions/133684/…
– Raptor
Aug 30 '16 at 4:25
add a comment |
i have faced the same issue the problem is solved by removing the extra field value i was sending.
<input type="hidden" maxlength="15" value="SINGLE" name="vpc_TxSourceSubType">
after changing it's value to null solved my problem
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
i hope it will help other too.
in your can case i see your merchant account detail is not correct or you are missing the secret hash
make sure you must have these field
<input type="hidden" maxlength="250" value="https://migs.mastercard.com.au/vpcpay" size="63" name="virtualPaymentClientURL">
<input type="hidden" value="test" name="Title">
<input type="hidden" maxlength="8" size="20" value="1" name="vpc_Version">
<input type="text" maxlength="8" size="20" value="aces_code" name="vpc_AccessCode">
<input type="text" maxlength="16" size="20" value="your" name="vpc_Merchant">
<input type="hidden" maxlength="16" size="20" value="pay" name="vpc_Command">
<input type="hidden" maxlength="40" size="20" value="1467269875" name="vpc_MerchTxnRef">
<input type="hidden" maxlength="34" size="20" value="this is product-10" name="vpc_OrderInfo">
<input type="hidden" maxlength="10" size="20" value="70" name="vpc_Amount">
<input type="hidden" maxlength="5" size="20" value="en" name="vpc_Locale">
<input type="hidden" maxlength="250" value="return_url" size="63" name="vpc_ReturnURL">
<input type="hidden" maxlength="15" name="vpc_TicketNo">
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
1
thank you,i couldn't solve that.i had to get support them.i think this must help others to solve that kind of issue
– srinath madusanka
Jul 1 '16 at 3:14
I didn't have thevpc_TxSourceSubType. Even I added, the status is still HTTP Status 400
– Raptor
Aug 30 '16 at 4:10
@Raptor these are not necessary the problem with you access code..
– Qaisar Satti
Aug 30 '16 at 4:19
@QaisarSatti can you please have a look on this question please ? magento.stackexchange.com/questions/133684/…
– Raptor
Aug 30 '16 at 4:25
add a comment |
i have faced the same issue the problem is solved by removing the extra field value i was sending.
<input type="hidden" maxlength="15" value="SINGLE" name="vpc_TxSourceSubType">
after changing it's value to null solved my problem
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
i hope it will help other too.
in your can case i see your merchant account detail is not correct or you are missing the secret hash
make sure you must have these field
<input type="hidden" maxlength="250" value="https://migs.mastercard.com.au/vpcpay" size="63" name="virtualPaymentClientURL">
<input type="hidden" value="test" name="Title">
<input type="hidden" maxlength="8" size="20" value="1" name="vpc_Version">
<input type="text" maxlength="8" size="20" value="aces_code" name="vpc_AccessCode">
<input type="text" maxlength="16" size="20" value="your" name="vpc_Merchant">
<input type="hidden" maxlength="16" size="20" value="pay" name="vpc_Command">
<input type="hidden" maxlength="40" size="20" value="1467269875" name="vpc_MerchTxnRef">
<input type="hidden" maxlength="34" size="20" value="this is product-10" name="vpc_OrderInfo">
<input type="hidden" maxlength="10" size="20" value="70" name="vpc_Amount">
<input type="hidden" maxlength="5" size="20" value="en" name="vpc_Locale">
<input type="hidden" maxlength="250" value="return_url" size="63" name="vpc_ReturnURL">
<input type="hidden" maxlength="15" name="vpc_TicketNo">
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
i have faced the same issue the problem is solved by removing the extra field value i was sending.
<input type="hidden" maxlength="15" value="SINGLE" name="vpc_TxSourceSubType">
after changing it's value to null solved my problem
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
i hope it will help other too.
in your can case i see your merchant account detail is not correct or you are missing the secret hash
make sure you must have these field
<input type="hidden" maxlength="250" value="https://migs.mastercard.com.au/vpcpay" size="63" name="virtualPaymentClientURL">
<input type="hidden" value="test" name="Title">
<input type="hidden" maxlength="8" size="20" value="1" name="vpc_Version">
<input type="text" maxlength="8" size="20" value="aces_code" name="vpc_AccessCode">
<input type="text" maxlength="16" size="20" value="your" name="vpc_Merchant">
<input type="hidden" maxlength="16" size="20" value="pay" name="vpc_Command">
<input type="hidden" maxlength="40" size="20" value="1467269875" name="vpc_MerchTxnRef">
<input type="hidden" maxlength="34" size="20" value="this is product-10" name="vpc_OrderInfo">
<input type="hidden" maxlength="10" size="20" value="70" name="vpc_Amount">
<input type="hidden" maxlength="5" size="20" value="en" name="vpc_Locale">
<input type="hidden" maxlength="250" value="return_url" size="63" name="vpc_ReturnURL">
<input type="hidden" maxlength="15" name="vpc_TicketNo">
<input type="hidden" maxlength="15" value="" name="vpc_TxSourceSubType">
edited Jun 30 '16 at 7:05
answered Jun 30 '16 at 6:55
Qaisar SattiQaisar Satti
27.1k1256109
27.1k1256109
1
thank you,i couldn't solve that.i had to get support them.i think this must help others to solve that kind of issue
– srinath madusanka
Jul 1 '16 at 3:14
I didn't have thevpc_TxSourceSubType. Even I added, the status is still HTTP Status 400
– Raptor
Aug 30 '16 at 4:10
@Raptor these are not necessary the problem with you access code..
– Qaisar Satti
Aug 30 '16 at 4:19
@QaisarSatti can you please have a look on this question please ? magento.stackexchange.com/questions/133684/…
– Raptor
Aug 30 '16 at 4:25
add a comment |
1
thank you,i couldn't solve that.i had to get support them.i think this must help others to solve that kind of issue
– srinath madusanka
Jul 1 '16 at 3:14
I didn't have thevpc_TxSourceSubType. Even I added, the status is still HTTP Status 400
– Raptor
Aug 30 '16 at 4:10
@Raptor these are not necessary the problem with you access code..
– Qaisar Satti
Aug 30 '16 at 4:19
@QaisarSatti can you please have a look on this question please ? magento.stackexchange.com/questions/133684/…
– Raptor
Aug 30 '16 at 4:25
1
1
thank you,i couldn't solve that.i had to get support them.i think this must help others to solve that kind of issue
– srinath madusanka
Jul 1 '16 at 3:14
thank you,i couldn't solve that.i had to get support them.i think this must help others to solve that kind of issue
– srinath madusanka
Jul 1 '16 at 3:14
I didn't have the
vpc_TxSourceSubType. Even I added, the status is still HTTP Status 400– Raptor
Aug 30 '16 at 4:10
I didn't have the
vpc_TxSourceSubType. Even I added, the status is still HTTP Status 400– Raptor
Aug 30 '16 at 4:10
@Raptor these are not necessary the problem with you access code..
– Qaisar Satti
Aug 30 '16 at 4:19
@Raptor these are not necessary the problem with you access code..
– Qaisar Satti
Aug 30 '16 at 4:19
@QaisarSatti can you please have a look on this question please ? magento.stackexchange.com/questions/133684/…
– Raptor
Aug 30 '16 at 4:25
@QaisarSatti can you please have a look on this question please ? magento.stackexchange.com/questions/133684/…
– Raptor
Aug 30 '16 at 4:25
add a comment |
In my case I had to make sure vpc_MerchTxnRef has a unique value for each request. If I sent any duplicate value then the mentioned error comes otherwise it works well.
add a comment |
In my case I had to make sure vpc_MerchTxnRef has a unique value for each request. If I sent any duplicate value then the mentioned error comes otherwise it works well.
add a comment |
In my case I had to make sure vpc_MerchTxnRef has a unique value for each request. If I sent any duplicate value then the mentioned error comes otherwise it works well.
In my case I had to make sure vpc_MerchTxnRef has a unique value for each request. If I sent any duplicate value then the mentioned error comes otherwise it works well.
answered Apr 3 at 15:45
Ibrahim Azhar ArmarIbrahim Azhar Armar
605
605
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f90140%2finvalid-digital-order-migs-payment-gateway%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown