PlacetoPay Plugin Payment for Magento 2 Stable
For more information about the component and the functionalities it offers, visit the following link Magento-Placetopay.
php^7.4ext-bcmathext-ctypeext-curlext-gdext-hashext-iconvext-intlext-mbstringext-opensslext-pdo_mysqlext-xmlext-soapext-splext-xslext-ziplib-libxmlcomposer@latestdatabaseMySQL5.7MariaDB10.*
web serverapache2.2 or 2.4 with mod_rewrite and mod_versionsnginx1.*
| Magento | Plugin | Comments |
|---|---|---|
| 2.4.4+ | ~2.1.0 | From 2.1.x |
Note: Plugin 2.1.x requires Magento 2.4.4+ and PHP 7.4+. Earlier versions are not supported.
View releases here
Create PlacetoPay\Payments folder (this is required, with this name)
mkdir /var/www/html/app/code/PlacetoPay/PaymentsClone Project in modules
git clone https://github.com/placetopay-org/magento2-placetopay.git /var/www/html/app/code/PlacetoPay/PaymentsSet permissions and install dependencies with composer
cd /var/www/html \
&& composer require alejociro/redirection \
&& cd app/code/PlacetoPay/Payments \
&& sudo setfacl -dR -m u:www-data:rwX -m u:`whoami`:rwX `pwd` \
&& sudo setfacl -R -m u:www-data:rwX -m u:`whoami`:rwX `pwd`Set up the module by running the following commands:
cd /var/www/html \
&& bin/magento setup:upgrade \
&& bin/magento cache:flush \
&& bin/magento cache:cleanIf you run Magento in production mode, you also must compile and deploy the module’s static files:
cd /var/www/html \
&& bin/magento setup:upgrade \
&& bin/magento setup:di:compile \
&& bin/magento setup:static-content:deploy \
&& bin/magento cache:flush \
&& bin/magento cache:cleanIf for some reasons, the language not show in spanish, run these commands:
cd /var/www/html \
&& bin/magento setup:static-content:deploy es_ES \
&& bin/magento setup:static-content:deploy es_CO \
&& bin/magento setup:static-content:deploy -f \
&& bin/magento cache:flush \
&& bin/magento cache:cleanSet up the module by running the following commands:
cd /var/www/html \
&& composer require placetopay/magento2-module-payments \
&& bin/magento module:enable PlacetoPay_Payments --clear-static-content \
&& bin/magento setup:upgrade \
&& bin/magento cache:flush \
&& bin/magento cache:cleanIf you run Magento in production mode, you also must compile and deploy the module’s static files:
cd /var/www/html \
&& bin/magento setup:di:compile \
&& bin/magento setup:static-content:deploy \
&& bin/magento cache:flush \
&& bin/magento cache:cleanIf for some reasons, the language not show in spanish, run these commands:
cd /var/www/html \
&& bin/magento setup:static-content:deploy es_ES \
&& bin/magento setup:static-content:deploy es_CO \
&& bin/magento setup:static-content:deploy -f \
&& bin/magento cache:flush \
&& bin/magento cache:cleanFirst, you must edit the auth.json, follow the next instructions:
cd /path/to/magento/.docker/magento-{version}
cp auth.json.example auth.jsonFor install magento 2, just exec this command in terminal, make sure you can execute make commands
cd /var/www/html/
make build-magento-{version}Then... (Please wait few minutes, while install ALL and load Apache :D to continue), you can go to
If you want, go to /etc/hosts file and add the next line:
sudo vim /etc/hosts
add -> 127.0.0.1 magento.testMagento 2 Admin Access
- user: admin@admin.com
- password: Admin12*
MySQL Access
- user: root
- password: root
- database: magento
See details in docker-compose.yml file or run make config command
if you wat to change the users and passwords, edit the env file.
Default versions
- Magento: 2.4.4 (minimum supported)
- PHP: 7.4 (minimum supported)
- MySQL: 5.6.23
You can change versions in .docker/Dockerfile
MAGENTO_VERSIONIf you find an error in the docker installation process, you must verify and update the github-oauth in auth.json, to do so, you must log in your github personal account and go to the settings, then click on the developer settings option and generate a personal access token.
During package development I try as best as possible to embrace good design and development practices, to help ensure that this package is as good as it can be. My checklist for package development includes:
- Be fully PSR1, PSR2, and PSR4 compliant.
- Include comprehensive documentation in README.md.
- Provide an up-to-date CHANGELOG.md which adheres to the format outlined at keepachangelog.
- Have no phpcs warnings throughout all code, use
composer testcommand.