- Log into Magento server (or switch to) as a user who has permissions to write to the Magento file system.
- Create a folder anywhere on your server (preferably not in the Magento install dir). When done, upload all extension zip packages in there.
- 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"
}
- Install the extension with Composer:
composer require mageworx/module-shippingrules-company-credit
- Log into Magento server (or switch to) as a user who has permissions to write to the Magento file system.
- Download the "Ready to paste" package from your customer's area, unzip it and upload the 'app' folder to your Magento install dir.
- Log in to the Magento server as, or switch to, a user who has permissions to write to the Magento file system.
- Go to your Magento install dir:
cd <your Magento install dir>
- And finally, update the database and autogenerated files:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
- Company Credit: Available Limit
- Company Credit: Balance
- Company Credit: Allow To Exceed Credit Limit
Important note: This feature is available only if you have Magento B2B modules installed on your system.