From 887fb03b9278b685d63a340566330b08570cd895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89bano=20Lopes?= Date: Mon, 20 Dec 2021 17:55:01 -0300 Subject: [PATCH] Manual installation instructions --- docs/MANUAL-DOWNLOAD-INSTALL.md | 40 +++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 docs/MANUAL-DOWNLOAD-INSTALL.md diff --git a/docs/MANUAL-DOWNLOAD-INSTALL.md b/docs/MANUAL-DOWNLOAD-INSTALL.md new file mode 100644 index 00000000..96b11e22 --- /dev/null +++ b/docs/MANUAL-DOWNLOAD-INSTALL.md @@ -0,0 +1,40 @@ +[Signifyd Extension for Magento 2](../README.md) > Manual download install (not recommended) + +# Manual download install (not recommended) + +Access the below link and download the latest version of the Signifyd extension. + +https://github.com/signifyd/magento2/releases/latest + +Uncompress the file contents into the folder [MAGENTO_ROOT]/app/code/Signifyd/Connect of your Magento instance. + +On the downloaded files, not on GitHub repository, check the [MAGENTO_ROOT]/app/code/Signifyd/Connect/composer.json file and look into "require" section for the "signifyd/signifyd-php" line. Check the version and download the exact same version of the Signifyd PHP SDK from the below link. + +https://github.com/signifyd/php/releases + +Uncompress the file contents into the folder [MAGENTO_ROOT]/app/code/Signifyd/Core of your Magento instance. + +Check if you are using production mode: + +``` +bin/magento deploy:mode:show +``` + +If yes, then put your application in maintenance, if not you can skip this: + +``` +bin/magento maintenance:enable +``` + +On the root of your Magento installation, run Magento setup upgrade: + +``` +bin/magento setup:upgrade +``` + +If you're on production mode, run below commands, if not, you can skip these: + +``` +bin/magento deploy:mode:set production +bin/magento maintenance:disable +```