Magento 2.1.6 - MercadoPago

1

I am installing for a Magento 2.1.6 Community Edition ecommerce.

I'm missing MercadoPago, I have root access for ssh without problems, I raised the content of scr / MercadoPago in the root folder of the magento (at the same height as "app", "pub", etc), but when I execute the commands to enable it, it tells me that it does not exist.

What am I doing wrong?

    
asked by Tomás Bianco 23.05.2017 в 20:23
source

1 answer

0

The recommended method to install modules in Magento 2 is through composer, in case the extension offers such option.

According to the MercadoPago documentation, you add the repository to your composer.json:

"repositories": [ { "type": "vcs", "url": "https://github.com/mercadopago/cart-magento2" } ]

Then download the extension package:

composer require mercadopago/magento2-plugin

More information: link

I was reviewing the documentation and there seems to be an error in the way they propose the manual installation, the content of src/MercadoPago should be copied to app/code/MercadoPago .

    
answered by 23.05.2017 / 20:28
source