feedoptimise / magento2-catalog-export
Exports catalog data, from Magento2 stores, which is used to generate product feeds.
Installs: 83 983
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 0
Type:magento2-module
Requires
- php: >=7.0
- dev-master
- 1.2.42
- 1.2.41
- 1.2.40
- 1.2.38
- 1.2.37
- 1.2.36
- 1.2.34
- 1.2.33
- 1.2.32
- 1.2.31
- 1.2.30
- 1.2.29
- 1.2.28
- 1.2.27
- 1.2.26
- 1.2.25
- 1.2.24
- 1.2.23
- 1.2.22
- 1.2.21
- 1.2.20
- 1.2.19
- 1.2.18
- 1.2.17
- 1.2.16
- 1.2.15
- 1.2.13
- 1.2.12
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.6
- 1.2.4
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-dev
This package is auto-updated.
Last update: 2024-10-23 14:27:40 UTC
README
This module is used to extract catalog data from Magento2 stores.
Getting Started
Prerequisites
There are a few things needed prior to installing this module:
- Magento2 Installed
- Magento2 Store Setup
- PHP 7+ installed
!! BACKUP !!
Make sure to backup your Magento store before running the steps below.
Our plugin has been tested across lots of installations but there could be some custom/bespoke changes in your Magento code or other unexpected scenarios which can cause your Magento to crash during or after the installation thus it's strongly advised to have a backup in place so you can easily restore should some issues arise.
Installing via Composer (recommended)
The first step is to add our repo to your composer.json, by running the following (from the root of your project in command line):
composer require feedoptimise/magento2-catalog-export
Now you can enable our module by running the following (from the root of your project in command line):
bin/magento module:enable Feedoptimise_CatalogExport
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento cache:flush
Then check the module has been enabled correctly, by running the following (from the root of your project in command line):
bin/magento module:status
Once the module is installed, you should then login to the admin panel of your store and visit the following page:
Stores > Configuration > Feedoptimise > Catalog Export
Once on the extension config page, please ensure the settings are as follows. The security token will be provided by Feedoptimise, prior or after the install.
Module Enable = Yes
Security Token = <SECURITY_TOKEN_HERE>
Once installed, we (Feedoptimise) will confirm it is working correctly and our system will begin extracting data for your product feed.
Installing (manually)
The first step to install this module, is to create the following directory path on your server app/code/Feedoptimise/CatalogExport. Then you can copy all of the contents inside the src folder into the newly created directory.
The directory structure should look like:
app/
code/
Feedoptimise/
CatalogExport/
Controller/
...
etc/
...
Helper/
...
composer.json
README.md
registration.php
Once the folder has been placed inside the /app/code directory, you can then run the following (from the root of your project in command line):
bin/magento module:enable Feedoptimise_CatalogExport
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento cache:flush
Then check the module has been enabled correctly, by running the following (from the root of your project in command line):
bin/magento module:status
Once the module is installed, you should then login to the admin panel of your store and visit the following page:
Stores > Configuration > Feedoptimise > Catalog Export
Once on the extension config page, please ensure the settings are as follows. The security token will be provided by Feedoptimise, prior or after the install.
Module Enable = Yes
Security Token = <SECURITY_TOKEN_HERE>
Once installed, we (Feedoptimise) will confirm it is working correctly and our system will begin extracting data for your product feed.
Updating (installed via composer)
To update the module, run the following (from the root of your project in command line).
composer update feedoptimise/magento2-catalog-export
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento cache:flush
Uninstalling (installed via composer)
To uninstall our extension, run the following (from the root of your project in command line):
bin/magento module:disable Feedoptimise_CatalogExport
bin/magento setup:upgrade
composer remove feedoptimise/magento2-catalog-export
Uninstalling (installed manually)
To uninstall our extension, run the following (from the root of your project in command line):
bin/magento module:disable Feedoptimise_CatalogExport
composer remove Feedoptimise/CatalogExport
bin/magento setup:upgrade
License
Usage is subject to permission. Copyright (c) 2020 Feedoptimise (http://www.feedoptimise.com)