Skip to content

Commit

Permalink
Manual installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
ebanolopes authored Dec 20, 2021
1 parent 798d24a commit 887fb03
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions docs/MANUAL-DOWNLOAD-INSTALL.md
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
```

0 comments on commit 887fb03

Please sign in to comment.