PayPal gateway has rejected request. Payment has already been made for this InvoiceID
I tried for an hour, but I can't find the solution. I using sandbox account for paypal check out and I need express check out, credit and debit card and paypal account payment method, how can configured this. I got error after express or paypal.
PayPal gateway has rejected request. Payment has already been made for this InvoiceID (#10412: Duplicate invoice)
magento-1.9 paypal payment-methods paypal-express
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I tried for an hour, but I can't find the solution. I using sandbox account for paypal check out and I need express check out, credit and debit card and paypal account payment method, how can configured this. I got error after express or paypal.
PayPal gateway has rejected request. Payment has already been made for this InvoiceID (#10412: Duplicate invoice)
magento-1.9 paypal payment-methods paypal-express
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I tried for an hour, but I can't find the solution. I using sandbox account for paypal check out and I need express check out, credit and debit card and paypal account payment method, how can configured this. I got error after express or paypal.
PayPal gateway has rejected request. Payment has already been made for this InvoiceID (#10412: Duplicate invoice)
magento-1.9 paypal payment-methods paypal-express
I tried for an hour, but I can't find the solution. I using sandbox account for paypal check out and I need express check out, credit and debit card and paypal account payment method, how can configured this. I got error after express or paypal.
PayPal gateway has rejected request. Payment has already been made for this InvoiceID (#10412: Duplicate invoice)
magento-1.9 paypal payment-methods paypal-express
magento-1.9 paypal payment-methods paypal-express
edited Dec 16 '15 at 19:50
7ochem
5,72193668
5,72193668
asked Dec 16 '15 at 19:23
SAM
3113
3113
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
Have you recently switched servers or is this on a development server?
You may have to change your increment_id
.
https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
add a comment |
If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!
This way your solving the symptom not the problem, if there is one that is.
– vitoriodachef
May 4 '18 at 9:41
add a comment |
By default, magento set the paypal invoice number (INVNUM
) equal to the order increment id. This is a good practice because it allows you to have a one to one mapping between your order and the transaction.
You may get this error message if you or your teammates have sent the same invoice number to paypal before using the same paypal sandbox account. I would suggest you to add the hostname and username as the prefix of the invoice number and add the timestamp as suffix, so that the invoice number will always be unique when you are testing your checkout process. For paypal express checkout, I added the following codes right before if it sends the request in the callSetExpressCheckout
method in app/code/community/Mage/Paypal/Model/Api/Nvp.php
:
// if it's in the testing mode, add a prefix to avoid duplicates
if (Mage::getStoreConfig('paypal/wpp/sandbox_flag')) {
$processUser = posix_getpwuid(posix_geteuid());
$request["INVNUM"] = gethostname().'-'.$processUser['name'].'-'.$request['INVNUM'].'-'.time();
}
add a comment |
There are few scenarios in which you can work out this issue which is returned in PayPal response.
Before doing this changes understand and know your Magento websites, PayPal settings and Magento Instances (dev, staging, production).
- Test orders, again and again, posting to Paypal after cleaning orders database tables, so maybe it is sending old invoices. Can add some prefix in an invoice.
Check here - https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
Can create some test orders via admin so Magento will send another invoice or order to PayPal, But make sure to create admin orders after adding any prefix value.
PayPal account settings: Only if you are using same PayPal account for multiple websites or else you have more than one instance of Magento of same website.
PayPal providing feature that whether to block or to allow invoice ID.
Logged in Standard PayPal Account > Profile > Payment Receiving Preferences:
On this page you will find "Block accidental payments"
set "Allow multiple payments per invoice ID".
So one of the tips will get resolve PayPal duplicate invoice Id issue.
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%2f94048%2fpaypal-gateway-has-rejected-request-payment-has-already-been-made-for-this-invo%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Have you recently switched servers or is this on a development server?
You may have to change your increment_id
.
https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
add a comment |
Have you recently switched servers or is this on a development server?
You may have to change your increment_id
.
https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
add a comment |
Have you recently switched servers or is this on a development server?
You may have to change your increment_id
.
https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
Have you recently switched servers or is this on a development server?
You may have to change your increment_id
.
https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
answered Dec 16 '15 at 19:56
Brideo
34418
34418
add a comment |
add a comment |
If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!
This way your solving the symptom not the problem, if there is one that is.
– vitoriodachef
May 4 '18 at 9:41
add a comment |
If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!
This way your solving the symptom not the problem, if there is one that is.
– vitoriodachef
May 4 '18 at 9:41
add a comment |
If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!
If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!
answered Jun 11 '16 at 10:09
Anup Chaudhary
307111
307111
This way your solving the symptom not the problem, if there is one that is.
– vitoriodachef
May 4 '18 at 9:41
add a comment |
This way your solving the symptom not the problem, if there is one that is.
– vitoriodachef
May 4 '18 at 9:41
This way your solving the symptom not the problem, if there is one that is.
– vitoriodachef
May 4 '18 at 9:41
This way your solving the symptom not the problem, if there is one that is.
– vitoriodachef
May 4 '18 at 9:41
add a comment |
By default, magento set the paypal invoice number (INVNUM
) equal to the order increment id. This is a good practice because it allows you to have a one to one mapping between your order and the transaction.
You may get this error message if you or your teammates have sent the same invoice number to paypal before using the same paypal sandbox account. I would suggest you to add the hostname and username as the prefix of the invoice number and add the timestamp as suffix, so that the invoice number will always be unique when you are testing your checkout process. For paypal express checkout, I added the following codes right before if it sends the request in the callSetExpressCheckout
method in app/code/community/Mage/Paypal/Model/Api/Nvp.php
:
// if it's in the testing mode, add a prefix to avoid duplicates
if (Mage::getStoreConfig('paypal/wpp/sandbox_flag')) {
$processUser = posix_getpwuid(posix_geteuid());
$request["INVNUM"] = gethostname().'-'.$processUser['name'].'-'.$request['INVNUM'].'-'.time();
}
add a comment |
By default, magento set the paypal invoice number (INVNUM
) equal to the order increment id. This is a good practice because it allows you to have a one to one mapping between your order and the transaction.
You may get this error message if you or your teammates have sent the same invoice number to paypal before using the same paypal sandbox account. I would suggest you to add the hostname and username as the prefix of the invoice number and add the timestamp as suffix, so that the invoice number will always be unique when you are testing your checkout process. For paypal express checkout, I added the following codes right before if it sends the request in the callSetExpressCheckout
method in app/code/community/Mage/Paypal/Model/Api/Nvp.php
:
// if it's in the testing mode, add a prefix to avoid duplicates
if (Mage::getStoreConfig('paypal/wpp/sandbox_flag')) {
$processUser = posix_getpwuid(posix_geteuid());
$request["INVNUM"] = gethostname().'-'.$processUser['name'].'-'.$request['INVNUM'].'-'.time();
}
add a comment |
By default, magento set the paypal invoice number (INVNUM
) equal to the order increment id. This is a good practice because it allows you to have a one to one mapping between your order and the transaction.
You may get this error message if you or your teammates have sent the same invoice number to paypal before using the same paypal sandbox account. I would suggest you to add the hostname and username as the prefix of the invoice number and add the timestamp as suffix, so that the invoice number will always be unique when you are testing your checkout process. For paypal express checkout, I added the following codes right before if it sends the request in the callSetExpressCheckout
method in app/code/community/Mage/Paypal/Model/Api/Nvp.php
:
// if it's in the testing mode, add a prefix to avoid duplicates
if (Mage::getStoreConfig('paypal/wpp/sandbox_flag')) {
$processUser = posix_getpwuid(posix_geteuid());
$request["INVNUM"] = gethostname().'-'.$processUser['name'].'-'.$request['INVNUM'].'-'.time();
}
By default, magento set the paypal invoice number (INVNUM
) equal to the order increment id. This is a good practice because it allows you to have a one to one mapping between your order and the transaction.
You may get this error message if you or your teammates have sent the same invoice number to paypal before using the same paypal sandbox account. I would suggest you to add the hostname and username as the prefix of the invoice number and add the timestamp as suffix, so that the invoice number will always be unique when you are testing your checkout process. For paypal express checkout, I added the following codes right before if it sends the request in the callSetExpressCheckout
method in app/code/community/Mage/Paypal/Model/Api/Nvp.php
:
// if it's in the testing mode, add a prefix to avoid duplicates
if (Mage::getStoreConfig('paypal/wpp/sandbox_flag')) {
$processUser = posix_getpwuid(posix_geteuid());
$request["INVNUM"] = gethostname().'-'.$processUser['name'].'-'.$request['INVNUM'].'-'.time();
}
answered May 22 '17 at 15:30
Max Pan Ziyuan
1
1
add a comment |
add a comment |
There are few scenarios in which you can work out this issue which is returned in PayPal response.
Before doing this changes understand and know your Magento websites, PayPal settings and Magento Instances (dev, staging, production).
- Test orders, again and again, posting to Paypal after cleaning orders database tables, so maybe it is sending old invoices. Can add some prefix in an invoice.
Check here - https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
Can create some test orders via admin so Magento will send another invoice or order to PayPal, But make sure to create admin orders after adding any prefix value.
PayPal account settings: Only if you are using same PayPal account for multiple websites or else you have more than one instance of Magento of same website.
PayPal providing feature that whether to block or to allow invoice ID.
Logged in Standard PayPal Account > Profile > Payment Receiving Preferences:
On this page you will find "Block accidental payments"
set "Allow multiple payments per invoice ID".
So one of the tips will get resolve PayPal duplicate invoice Id issue.
add a comment |
There are few scenarios in which you can work out this issue which is returned in PayPal response.
Before doing this changes understand and know your Magento websites, PayPal settings and Magento Instances (dev, staging, production).
- Test orders, again and again, posting to Paypal after cleaning orders database tables, so maybe it is sending old invoices. Can add some prefix in an invoice.
Check here - https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
Can create some test orders via admin so Magento will send another invoice or order to PayPal, But make sure to create admin orders after adding any prefix value.
PayPal account settings: Only if you are using same PayPal account for multiple websites or else you have more than one instance of Magento of same website.
PayPal providing feature that whether to block or to allow invoice ID.
Logged in Standard PayPal Account > Profile > Payment Receiving Preferences:
On this page you will find "Block accidental payments"
set "Allow multiple payments per invoice ID".
So one of the tips will get resolve PayPal duplicate invoice Id issue.
add a comment |
There are few scenarios in which you can work out this issue which is returned in PayPal response.
Before doing this changes understand and know your Magento websites, PayPal settings and Magento Instances (dev, staging, production).
- Test orders, again and again, posting to Paypal after cleaning orders database tables, so maybe it is sending old invoices. Can add some prefix in an invoice.
Check here - https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
Can create some test orders via admin so Magento will send another invoice or order to PayPal, But make sure to create admin orders after adding any prefix value.
PayPal account settings: Only if you are using same PayPal account for multiple websites or else you have more than one instance of Magento of same website.
PayPal providing feature that whether to block or to allow invoice ID.
Logged in Standard PayPal Account > Profile > Payment Receiving Preferences:
On this page you will find "Block accidental payments"
set "Allow multiple payments per invoice ID".
So one of the tips will get resolve PayPal duplicate invoice Id issue.
There are few scenarios in which you can work out this issue which is returned in PayPal response.
Before doing this changes understand and know your Magento websites, PayPal settings and Magento Instances (dev, staging, production).
- Test orders, again and again, posting to Paypal after cleaning orders database tables, so maybe it is sending old invoices. Can add some prefix in an invoice.
Check here - https://www.warpconduit.net/2012/04/18/how-to-change-the-order-increment-id-and-prefix-in-magento/
Can create some test orders via admin so Magento will send another invoice or order to PayPal, But make sure to create admin orders after adding any prefix value.
PayPal account settings: Only if you are using same PayPal account for multiple websites or else you have more than one instance of Magento of same website.
PayPal providing feature that whether to block or to allow invoice ID.
Logged in Standard PayPal Account > Profile > Payment Receiving Preferences:
On this page you will find "Block accidental payments"
set "Allow multiple payments per invoice ID".
So one of the tips will get resolve PayPal duplicate invoice Id issue.
answered Oct 27 '18 at 9:01
sandip
1,0571721
1,0571721
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f94048%2fpaypal-gateway-has-rejected-request-payment-has-already-been-made-for-this-invo%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