PayPal gateway has rejected request. Payment has already been made for this InvoiceID












6














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)











share|improve this question
















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.




















    6














    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)











    share|improve this question
















    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.


















      6












      6








      6







      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)











      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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.
























          4 Answers
          4






          active

          oldest

          votes


















          0














          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/






          share|improve this answer





























            0














            If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!






            share|improve this answer





















            • This way your solving the symptom not the problem, if there is one that is.
              – vitoriodachef
              May 4 '18 at 9:41





















            0














            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();
            }





            share|improve this answer





























              0














              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).




              1. 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/




              1. 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.


              2. 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".



              enter image description here
              So one of the tips will get resolve PayPal duplicate invoice Id issue.






              share|improve this answer





















                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
                });


                }
                });














                draft saved

                draft discarded


















                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









                0














                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/






                share|improve this answer


























                  0














                  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/






                  share|improve this answer
























                    0












                    0








                    0






                    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/






                    share|improve this answer












                    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/







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 16 '15 at 19:56









                    Brideo

                    34418




                    34418

























                        0














                        If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!






                        share|improve this answer





















                        • This way your solving the symptom not the problem, if there is one that is.
                          – vitoriodachef
                          May 4 '18 at 9:41


















                        0














                        If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!






                        share|improve this answer





















                        • This way your solving the symptom not the problem, if there is one that is.
                          – vitoriodachef
                          May 4 '18 at 9:41
















                        0












                        0








                        0






                        If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!






                        share|improve this answer












                        If you are using sandbox mode, Then delete the all orders refresh the cache problem will solve. Simple!







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        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




















                        • 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













                        0














                        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();
                        }





                        share|improve this answer


























                          0














                          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();
                          }





                          share|improve this answer
























                            0












                            0








                            0






                            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();
                            }





                            share|improve this answer












                            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();
                            }






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 22 '17 at 15:30









                            Max Pan Ziyuan

                            1




                            1























                                0














                                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).




                                1. 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/




                                1. 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.


                                2. 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".



                                enter image description here
                                So one of the tips will get resolve PayPal duplicate invoice Id issue.






                                share|improve this answer


























                                  0














                                  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).




                                  1. 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/




                                  1. 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.


                                  2. 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".



                                  enter image description here
                                  So one of the tips will get resolve PayPal duplicate invoice Id issue.






                                  share|improve this answer
























                                    0












                                    0








                                    0






                                    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).




                                    1. 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/




                                    1. 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.


                                    2. 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".



                                    enter image description here
                                    So one of the tips will get resolve PayPal duplicate invoice Id issue.






                                    share|improve this answer












                                    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).




                                    1. 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/




                                    1. 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.


                                    2. 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".



                                    enter image description here
                                    So one of the tips will get resolve PayPal duplicate invoice Id issue.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Oct 27 '18 at 9:01









                                    sandip

                                    1,0571721




                                    1,0571721






























                                        draft saved

                                        draft discarded




















































                                        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.




                                        draft saved


                                        draft discarded














                                        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





















































                                        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







                                        Popular posts from this blog

                                        An IMO inspired problem

                                        Management

                                        Has there ever been an instance of an active nuclear power plant within or near a war zone?