channelengine/channelengine

ChannelEngine integration.

Installs: 104

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:magento2-module

1.2.4 2024-04-24 09:23 UTC

This package is auto-updated.

Last update: 2024-04-24 09:24:32 UTC


README

Please read this document thoroughly in order to prepare for the correct installation.

Installation instructions

Manual installation

To manually install the extension, you will need to have direct access to the server through the terminal.

Step 1: Extract the content of the channelengine-ce-manual.zip (for Magento Community Edition) or channelengine-ee-manual.zip (for Magento Enterprise Edition) file and upload ChannelEngine folder to your Magento shop app/code/ directory (copy the whole ChannelEngine folder). After you do that, make sure that you have folders app/code/ChannelEngine/ChannelEngineIntegration.

Step 2: Now module has to be enabled and Magento recompiled in order to include the module.

Login to Magento server via terminal (SSH) and go to the root directory of the Magento installation. All the commands should be executed as the Magento server console user. This is the same console user that is used to install the Magento.

Note: If you previously uninstalled the module, then you need to enable the module first:

php bin/magento module:enable ChannelEngine_ChannelEngineIntegration

Run the following commands:

php bin/magento setup:upgrade
php bin/magento setup:di:compile

Step 3: Optionally you might need to fix permissions on your Magento files if the previous steps were run as a root or other non-magento console user.

After installation is over, ChannelEngine configuration can be accessed with Stores > ChannelEngine > Configuration menu.

Uninstall instructions

Marketplace installation

If module is installed through the Magento Marketplace, module can be uninstalled from the System > Web Setup Wizard > Extension manager.

Uninstall manually

In a case where module is installed manually, some manual actions are also required to remove the module.

Login to Magento server via terminal (SSH) and go to the root directory of the Magento installation. All the commands should be executed as the Magento server console user. This is the same console user that is used to install the Magento.

Step 1: Disable module by running this command from the Magento root folder and as a magento console user:

php bin/magento module:disable ChannelEngine_ChannelEngineIntegration

Step 2: Remove module files

rm -rf app/code/ChannelEngine

Step 3: Delete module data from database (you will need the access to the database):

DELETE FROM `setup_module` WHERE `module` = 'ChannelEngine_ChannelEngineIntegration';
DROP TABLE `channel_engine_entity`;
DROP TABLE `channel_engine_events`;
DROP TABLE `channel_engine_logs`;
DROP TABLE `channel_engine_order`;
DROP TABLE `channel_engine_queue`;

For Enterprise Edition, delete returns table:

DROP TABLE `channel_engine_returns`;

Step 4: Lastly, rebuild Magento's code:

php bin/magento setup:upgrade
php bin/magento setup:di:compile

Compatibility

Magento 2.3.x and 2.4.x versions

Prerequisites

  • PHP 7.1 or newer
  • MySQL 5.6 or newer