How to apply the Magento 2 patches?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







7















I'm using the Magento 2.1.6 and I want to apply the patch CE-MAGETWO-67805.patch.



How can I apply the *.patch files?










share|improve this question























  • can you please help me on how to find the required patches to install for a given Magento version. Is there any tool you are using to find them? or we should visit magento.com for patches information?

    – Kalyan Chakravarthi V
    Feb 8 '18 at 14:13











  • i was searching for best practice to apply these patches on a Magento 2 Composer installation. In this Artikel i posted how we Patch Magento Source. medium.com/@LarsRoettig/…

    – Lars Roettig
    Aug 7 '18 at 18:08


















7















I'm using the Magento 2.1.6 and I want to apply the patch CE-MAGETWO-67805.patch.



How can I apply the *.patch files?










share|improve this question























  • can you please help me on how to find the required patches to install for a given Magento version. Is there any tool you are using to find them? or we should visit magento.com for patches information?

    – Kalyan Chakravarthi V
    Feb 8 '18 at 14:13











  • i was searching for best practice to apply these patches on a Magento 2 Composer installation. In this Artikel i posted how we Patch Magento Source. medium.com/@LarsRoettig/…

    – Lars Roettig
    Aug 7 '18 at 18:08














7












7








7


3






I'm using the Magento 2.1.6 and I want to apply the patch CE-MAGETWO-67805.patch.



How can I apply the *.patch files?










share|improve this question














I'm using the Magento 2.1.6 and I want to apply the patch CE-MAGETWO-67805.patch.



How can I apply the *.patch files?







magento2 security patches






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked May 23 '17 at 1:39









Rafael Corrêa GomesRafael Corrêa Gomes

4,68523366




4,68523366













  • can you please help me on how to find the required patches to install for a given Magento version. Is there any tool you are using to find them? or we should visit magento.com for patches information?

    – Kalyan Chakravarthi V
    Feb 8 '18 at 14:13











  • i was searching for best practice to apply these patches on a Magento 2 Composer installation. In this Artikel i posted how we Patch Magento Source. medium.com/@LarsRoettig/…

    – Lars Roettig
    Aug 7 '18 at 18:08



















  • can you please help me on how to find the required patches to install for a given Magento version. Is there any tool you are using to find them? or we should visit magento.com for patches information?

    – Kalyan Chakravarthi V
    Feb 8 '18 at 14:13











  • i was searching for best practice to apply these patches on a Magento 2 Composer installation. In this Artikel i posted how we Patch Magento Source. medium.com/@LarsRoettig/…

    – Lars Roettig
    Aug 7 '18 at 18:08

















can you please help me on how to find the required patches to install for a given Magento version. Is there any tool you are using to find them? or we should visit magento.com for patches information?

– Kalyan Chakravarthi V
Feb 8 '18 at 14:13





can you please help me on how to find the required patches to install for a given Magento version. Is there any tool you are using to find them? or we should visit magento.com for patches information?

– Kalyan Chakravarthi V
Feb 8 '18 at 14:13













i was searching for best practice to apply these patches on a Magento 2 Composer installation. In this Artikel i posted how we Patch Magento Source. medium.com/@LarsRoettig/…

– Lars Roettig
Aug 7 '18 at 18:08





i was searching for best practice to apply these patches on a Magento 2 Composer installation. In this Artikel i posted how we Patch Magento Source. medium.com/@LarsRoettig/…

– Lars Roettig
Aug 7 '18 at 18:08










5 Answers
5






active

oldest

votes


















6














Traditional



You can use the traditional method:



git apply MAGEPatch-20181106.patch


or



patch -p1 < MDVA-14172_EE_2.2.6_COMPOSER_v1.patch    


Composer



Or to solve the same situation with files being patched in the vendor directory, there is a good article on it here: http://jamescowie.me/blog/2016/12/Composer-Magento-Patches/



We did something similar in our composer file:



...
"extra": {
"magento-force": "override",
"composer-exit-on-patch-failure": true,
"patches": {
"magento/module-cache-invalidate": {
"GH 8815: Varnish purge requests can overrun size limit": "patches/composer/github-issue-8815.patch"
},
}
}
...


In our Magento root, we have a patches/composer directory which is where we reference them and in the extras/patches section, we tell it which Magento module to patch.



Ironically I found this post when looking at how this was done only to find our solution was already in place by our initial vendor.






share|improve this answer

































    6














    If you have git installed on your environment just use the following copy the patch on you magento root folder.



    Then use:



    $ git apply MAGETWO-67805-2017-05-17-03-04-03.patch





    share|improve this answer
























    • what if one doesn't keep vendor folder as part of the git repository? Doesn't this just patch core files directly?

      – dchayka
      Sep 8 '17 at 19:16



















    0
















    1. Ensure that your Magento store is in developer mode



      php bin/magento deploy:mode:set developer




    2. Download the security patch



      git apply MAGETWO-67805-2017-05-17-03-04-03.patch




    3. After that just run below command to apply the patch



      php bin/magento setup:upgrade








    share|improve this answer


























    • Have you any idea, how to remove last apply the patch?

      – Dhaduk Mitesh
      Mar 15 at 11:12



















    0















    • Download the patch file and place it into the root directory of Magento



    • Set the developer mode by using command:



      php bin/magento deploy:mode:set developer




    • Apply the patch by using command:



      $ git apply CE-MAGETWO-93036-2018-07-02-07-06-53.patch



    • The possible warnings and errors you can get are:




    warning: vendor/magento/module-email/Model/FileName.php has
    type 100755, expected 100644




    The above warning means that the permissions of the FileName.php are 755 though the expected permissions are 644.



    If you apply the patch file twice you are expected to get an error message similar to:




    error: patch failed: vendor/magento/module-email/Model/AbstractTemplate.php:534



    error: vendor/magento/module-email/Model/AbstractTemplate.php: patch does not apply




    Its ok to get the above error or warning.



    Your patch is still successfully applied. Enjoy ;)






    share|improve this answer































      0














      If anyone is doing this via Composer there is a free module you can install it allows you to install patches from the cli.



      magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:list
      Magento Version: 2.3.0
      PRODSECBUG-2198 - This patch provides protection against the SQL injection vulnerability described under PRODSECBUG-2198
      More info can be found here: https://www.magentocommerce.com/products/downloads/magento/#download2288

      magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:add --patch=PRODSECBUG-2198
      Patch: PRODSECBUG-2198
      Message: PRODSECBUG-2198 - Added via Zero1_Patches
      Magento Version: 2.3.0
      SUCCESS!
      The patch has been added to you composer.json
      You can now run: "composer install" to apply the patch.
      magento@ce87c6cc1cdf /home/magento/htdocs/$


      I use it on Mdoq, but it can be used anywhere.

      There is a good blog post on it here






      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%2f175598%2fhow-to-apply-the-magento-2-patches%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        5 Answers
        5






        active

        oldest

        votes








        5 Answers
        5






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        6














        Traditional



        You can use the traditional method:



        git apply MAGEPatch-20181106.patch


        or



        patch -p1 < MDVA-14172_EE_2.2.6_COMPOSER_v1.patch    


        Composer



        Or to solve the same situation with files being patched in the vendor directory, there is a good article on it here: http://jamescowie.me/blog/2016/12/Composer-Magento-Patches/



        We did something similar in our composer file:



        ...
        "extra": {
        "magento-force": "override",
        "composer-exit-on-patch-failure": true,
        "patches": {
        "magento/module-cache-invalidate": {
        "GH 8815: Varnish purge requests can overrun size limit": "patches/composer/github-issue-8815.patch"
        },
        }
        }
        ...


        In our Magento root, we have a patches/composer directory which is where we reference them and in the extras/patches section, we tell it which Magento module to patch.



        Ironically I found this post when looking at how this was done only to find our solution was already in place by our initial vendor.






        share|improve this answer






























          6














          Traditional



          You can use the traditional method:



          git apply MAGEPatch-20181106.patch


          or



          patch -p1 < MDVA-14172_EE_2.2.6_COMPOSER_v1.patch    


          Composer



          Or to solve the same situation with files being patched in the vendor directory, there is a good article on it here: http://jamescowie.me/blog/2016/12/Composer-Magento-Patches/



          We did something similar in our composer file:



          ...
          "extra": {
          "magento-force": "override",
          "composer-exit-on-patch-failure": true,
          "patches": {
          "magento/module-cache-invalidate": {
          "GH 8815: Varnish purge requests can overrun size limit": "patches/composer/github-issue-8815.patch"
          },
          }
          }
          ...


          In our Magento root, we have a patches/composer directory which is where we reference them and in the extras/patches section, we tell it which Magento module to patch.



          Ironically I found this post when looking at how this was done only to find our solution was already in place by our initial vendor.






          share|improve this answer




























            6












            6








            6







            Traditional



            You can use the traditional method:



            git apply MAGEPatch-20181106.patch


            or



            patch -p1 < MDVA-14172_EE_2.2.6_COMPOSER_v1.patch    


            Composer



            Or to solve the same situation with files being patched in the vendor directory, there is a good article on it here: http://jamescowie.me/blog/2016/12/Composer-Magento-Patches/



            We did something similar in our composer file:



            ...
            "extra": {
            "magento-force": "override",
            "composer-exit-on-patch-failure": true,
            "patches": {
            "magento/module-cache-invalidate": {
            "GH 8815: Varnish purge requests can overrun size limit": "patches/composer/github-issue-8815.patch"
            },
            }
            }
            ...


            In our Magento root, we have a patches/composer directory which is where we reference them and in the extras/patches section, we tell it which Magento module to patch.



            Ironically I found this post when looking at how this was done only to find our solution was already in place by our initial vendor.






            share|improve this answer















            Traditional



            You can use the traditional method:



            git apply MAGEPatch-20181106.patch


            or



            patch -p1 < MDVA-14172_EE_2.2.6_COMPOSER_v1.patch    


            Composer



            Or to solve the same situation with files being patched in the vendor directory, there is a good article on it here: http://jamescowie.me/blog/2016/12/Composer-Magento-Patches/



            We did something similar in our composer file:



            ...
            "extra": {
            "magento-force": "override",
            "composer-exit-on-patch-failure": true,
            "patches": {
            "magento/module-cache-invalidate": {
            "GH 8815: Varnish purge requests can overrun size limit": "patches/composer/github-issue-8815.patch"
            },
            }
            }
            ...


            In our Magento root, we have a patches/composer directory which is where we reference them and in the extras/patches section, we tell it which Magento module to patch.



            Ironically I found this post when looking at how this was done only to find our solution was already in place by our initial vendor.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 6 '18 at 17:43









            Rafael Corrêa Gomes

            4,68523366




            4,68523366










            answered Jan 9 '18 at 19:20









            Joshua FrickeJoshua Fricke

            18719




            18719

























                6














                If you have git installed on your environment just use the following copy the patch on you magento root folder.



                Then use:



                $ git apply MAGETWO-67805-2017-05-17-03-04-03.patch





                share|improve this answer
























                • what if one doesn't keep vendor folder as part of the git repository? Doesn't this just patch core files directly?

                  – dchayka
                  Sep 8 '17 at 19:16
















                6














                If you have git installed on your environment just use the following copy the patch on you magento root folder.



                Then use:



                $ git apply MAGETWO-67805-2017-05-17-03-04-03.patch





                share|improve this answer
























                • what if one doesn't keep vendor folder as part of the git repository? Doesn't this just patch core files directly?

                  – dchayka
                  Sep 8 '17 at 19:16














                6












                6








                6







                If you have git installed on your environment just use the following copy the patch on you magento root folder.



                Then use:



                $ git apply MAGETWO-67805-2017-05-17-03-04-03.patch





                share|improve this answer













                If you have git installed on your environment just use the following copy the patch on you magento root folder.



                Then use:



                $ git apply MAGETWO-67805-2017-05-17-03-04-03.patch






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 23 '17 at 11:47









                Suresh ChikaniSuresh Chikani

                10.5k53471




                10.5k53471













                • what if one doesn't keep vendor folder as part of the git repository? Doesn't this just patch core files directly?

                  – dchayka
                  Sep 8 '17 at 19:16



















                • what if one doesn't keep vendor folder as part of the git repository? Doesn't this just patch core files directly?

                  – dchayka
                  Sep 8 '17 at 19:16

















                what if one doesn't keep vendor folder as part of the git repository? Doesn't this just patch core files directly?

                – dchayka
                Sep 8 '17 at 19:16





                what if one doesn't keep vendor folder as part of the git repository? Doesn't this just patch core files directly?

                – dchayka
                Sep 8 '17 at 19:16











                0
















                1. Ensure that your Magento store is in developer mode



                  php bin/magento deploy:mode:set developer




                2. Download the security patch



                  git apply MAGETWO-67805-2017-05-17-03-04-03.patch




                3. After that just run below command to apply the patch



                  php bin/magento setup:upgrade








                share|improve this answer


























                • Have you any idea, how to remove last apply the patch?

                  – Dhaduk Mitesh
                  Mar 15 at 11:12
















                0
















                1. Ensure that your Magento store is in developer mode



                  php bin/magento deploy:mode:set developer




                2. Download the security patch



                  git apply MAGETWO-67805-2017-05-17-03-04-03.patch




                3. After that just run below command to apply the patch



                  php bin/magento setup:upgrade








                share|improve this answer


























                • Have you any idea, how to remove last apply the patch?

                  – Dhaduk Mitesh
                  Mar 15 at 11:12














                0












                0








                0









                1. Ensure that your Magento store is in developer mode



                  php bin/magento deploy:mode:set developer




                2. Download the security patch



                  git apply MAGETWO-67805-2017-05-17-03-04-03.patch




                3. After that just run below command to apply the patch



                  php bin/magento setup:upgrade








                share|improve this answer

















                1. Ensure that your Magento store is in developer mode



                  php bin/magento deploy:mode:set developer




                2. Download the security patch



                  git apply MAGETWO-67805-2017-05-17-03-04-03.patch




                3. After that just run below command to apply the patch



                  php bin/magento setup:upgrade









                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 6 '18 at 11:33









                Usman Yousaf

                26010




                26010










                answered Sep 24 '18 at 12:03









                Divya Divya

                473




                473













                • Have you any idea, how to remove last apply the patch?

                  – Dhaduk Mitesh
                  Mar 15 at 11:12



















                • Have you any idea, how to remove last apply the patch?

                  – Dhaduk Mitesh
                  Mar 15 at 11:12

















                Have you any idea, how to remove last apply the patch?

                – Dhaduk Mitesh
                Mar 15 at 11:12





                Have you any idea, how to remove last apply the patch?

                – Dhaduk Mitesh
                Mar 15 at 11:12











                0















                • Download the patch file and place it into the root directory of Magento



                • Set the developer mode by using command:



                  php bin/magento deploy:mode:set developer




                • Apply the patch by using command:



                  $ git apply CE-MAGETWO-93036-2018-07-02-07-06-53.patch



                • The possible warnings and errors you can get are:




                warning: vendor/magento/module-email/Model/FileName.php has
                type 100755, expected 100644




                The above warning means that the permissions of the FileName.php are 755 though the expected permissions are 644.



                If you apply the patch file twice you are expected to get an error message similar to:




                error: patch failed: vendor/magento/module-email/Model/AbstractTemplate.php:534



                error: vendor/magento/module-email/Model/AbstractTemplate.php: patch does not apply




                Its ok to get the above error or warning.



                Your patch is still successfully applied. Enjoy ;)






                share|improve this answer




























                  0















                  • Download the patch file and place it into the root directory of Magento



                  • Set the developer mode by using command:



                    php bin/magento deploy:mode:set developer




                  • Apply the patch by using command:



                    $ git apply CE-MAGETWO-93036-2018-07-02-07-06-53.patch



                  • The possible warnings and errors you can get are:




                  warning: vendor/magento/module-email/Model/FileName.php has
                  type 100755, expected 100644




                  The above warning means that the permissions of the FileName.php are 755 though the expected permissions are 644.



                  If you apply the patch file twice you are expected to get an error message similar to:




                  error: patch failed: vendor/magento/module-email/Model/AbstractTemplate.php:534



                  error: vendor/magento/module-email/Model/AbstractTemplate.php: patch does not apply




                  Its ok to get the above error or warning.



                  Your patch is still successfully applied. Enjoy ;)






                  share|improve this answer


























                    0












                    0








                    0








                    • Download the patch file and place it into the root directory of Magento



                    • Set the developer mode by using command:



                      php bin/magento deploy:mode:set developer




                    • Apply the patch by using command:



                      $ git apply CE-MAGETWO-93036-2018-07-02-07-06-53.patch



                    • The possible warnings and errors you can get are:




                    warning: vendor/magento/module-email/Model/FileName.php has
                    type 100755, expected 100644




                    The above warning means that the permissions of the FileName.php are 755 though the expected permissions are 644.



                    If you apply the patch file twice you are expected to get an error message similar to:




                    error: patch failed: vendor/magento/module-email/Model/AbstractTemplate.php:534



                    error: vendor/magento/module-email/Model/AbstractTemplate.php: patch does not apply




                    Its ok to get the above error or warning.



                    Your patch is still successfully applied. Enjoy ;)






                    share|improve this answer














                    • Download the patch file and place it into the root directory of Magento



                    • Set the developer mode by using command:



                      php bin/magento deploy:mode:set developer




                    • Apply the patch by using command:



                      $ git apply CE-MAGETWO-93036-2018-07-02-07-06-53.patch



                    • The possible warnings and errors you can get are:




                    warning: vendor/magento/module-email/Model/FileName.php has
                    type 100755, expected 100644




                    The above warning means that the permissions of the FileName.php are 755 though the expected permissions are 644.



                    If you apply the patch file twice you are expected to get an error message similar to:




                    error: patch failed: vendor/magento/module-email/Model/AbstractTemplate.php:534



                    error: vendor/magento/module-email/Model/AbstractTemplate.php: patch does not apply




                    Its ok to get the above error or warning.



                    Your patch is still successfully applied. Enjoy ;)







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 6 '18 at 11:56









                    Usman YousafUsman Yousaf

                    26010




                    26010























                        0














                        If anyone is doing this via Composer there is a free module you can install it allows you to install patches from the cli.



                        magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:list
                        Magento Version: 2.3.0
                        PRODSECBUG-2198 - This patch provides protection against the SQL injection vulnerability described under PRODSECBUG-2198
                        More info can be found here: https://www.magentocommerce.com/products/downloads/magento/#download2288

                        magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:add --patch=PRODSECBUG-2198
                        Patch: PRODSECBUG-2198
                        Message: PRODSECBUG-2198 - Added via Zero1_Patches
                        Magento Version: 2.3.0
                        SUCCESS!
                        The patch has been added to you composer.json
                        You can now run: "composer install" to apply the patch.
                        magento@ce87c6cc1cdf /home/magento/htdocs/$


                        I use it on Mdoq, but it can be used anywhere.

                        There is a good blog post on it here






                        share|improve this answer




























                          0














                          If anyone is doing this via Composer there is a free module you can install it allows you to install patches from the cli.



                          magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:list
                          Magento Version: 2.3.0
                          PRODSECBUG-2198 - This patch provides protection against the SQL injection vulnerability described under PRODSECBUG-2198
                          More info can be found here: https://www.magentocommerce.com/products/downloads/magento/#download2288

                          magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:add --patch=PRODSECBUG-2198
                          Patch: PRODSECBUG-2198
                          Message: PRODSECBUG-2198 - Added via Zero1_Patches
                          Magento Version: 2.3.0
                          SUCCESS!
                          The patch has been added to you composer.json
                          You can now run: "composer install" to apply the patch.
                          magento@ce87c6cc1cdf /home/magento/htdocs/$


                          I use it on Mdoq, but it can be used anywhere.

                          There is a good blog post on it here






                          share|improve this answer


























                            0












                            0








                            0







                            If anyone is doing this via Composer there is a free module you can install it allows you to install patches from the cli.



                            magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:list
                            Magento Version: 2.3.0
                            PRODSECBUG-2198 - This patch provides protection against the SQL injection vulnerability described under PRODSECBUG-2198
                            More info can be found here: https://www.magentocommerce.com/products/downloads/magento/#download2288

                            magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:add --patch=PRODSECBUG-2198
                            Patch: PRODSECBUG-2198
                            Message: PRODSECBUG-2198 - Added via Zero1_Patches
                            Magento Version: 2.3.0
                            SUCCESS!
                            The patch has been added to you composer.json
                            You can now run: "composer install" to apply the patch.
                            magento@ce87c6cc1cdf /home/magento/htdocs/$


                            I use it on Mdoq, but it can be used anywhere.

                            There is a good blog post on it here






                            share|improve this answer













                            If anyone is doing this via Composer there is a free module you can install it allows you to install patches from the cli.



                            magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:list
                            Magento Version: 2.3.0
                            PRODSECBUG-2198 - This patch provides protection against the SQL injection vulnerability described under PRODSECBUG-2198
                            More info can be found here: https://www.magentocommerce.com/products/downloads/magento/#download2288

                            magento@ce87c6cc1cdf /home/magento/htdocs/$ php bin/magento patch:add --patch=PRODSECBUG-2198
                            Patch: PRODSECBUG-2198
                            Message: PRODSECBUG-2198 - Added via Zero1_Patches
                            Magento Version: 2.3.0
                            SUCCESS!
                            The patch has been added to you composer.json
                            You can now run: "composer install" to apply the patch.
                            magento@ce87c6cc1cdf /home/magento/htdocs/$


                            I use it on Mdoq, but it can be used anywhere.

                            There is a good blog post on it here







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered 11 hours ago









                            AdamAdam

                            12




                            12






























                                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.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f175598%2fhow-to-apply-the-magento-2-patches%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

                                Alcázar de San Juan

                                Griza ansero

                                Heinkel He 51