b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / a / home / dev2.destoffenstraat.com / app / code / MageWorx / GiftCardsMeta /
Filename/home/a/home/dev2.destoffenstraat.com/app/code/MageWorx/GiftCardsMeta/README.md
Size1.95 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified06-Apr-2021 18:06
Last accessed22-Aug-2025 17:22
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
# MageWorx Gift Cards Meta Extension for Magento 2

## Upload the extension

### Upload via Composer

1. Log into Magento server (or switch to) as a user who has permissions to write to the Magento file system.
2. Create a folder anywhere on your server (preferably not in the Magento install dir). When done, upload all extension zip packages in there.
3. To use the folder created above as a packaging repository, add the run composer command:
```
composer config repositories.mageworx artifact {YOUR/ABSOLUTE/PATH/TO/EXTENSIONS/DIRECTORY}
```
For example:
```
composer config repositories.mageworx artifact /Users/mageworxuser/magento_extensions/mageworx/zip
```

This command add to your composer.json file this lines:

```
,
"mageworx": {
"type": "artifact",
"url": "/Users/mageworxuser/magento_extensions/mageworx/zip"
}
```

4. Install the extension with Composer:
```
composer require mageworx/module-giftcards
```

5. Update the extension with Composer:

If your current extension's version is less then 2.2.0:
```
composer remove mageworx/module-giftcardsmeta
composer require mageworx/module-giftcards
```

If your current extension's version is hight or equivalent then 2.2.0:
```
composer update mageworx/module-giftcards
```

### Upload by copying code

1. Log into Magento server (or switch to) as a user who has permissions to write to the Magento file system.
2. Download the "Ready to paste" package from your customer's area, unzip it and upload the 'app' folder to your Magento install dir.


## Enable the extension

1. Log in to the Magento server as, or switch to, a user who has permissions to write to the Magento file system.
2. Go to your Magento install dir:
```
cd <your Magento install dir>
```
3. Enable the extension:
```
php bin/magento module:enable MageWorx_GiftCards
```

3. And finally, update the database:
```
php bin/magento setup:upgrade
php bin/magento cache:flush
php bin/magento setup:static-content:deploy
```