-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
798d24a
commit 887fb03
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |