Back to Top

User Guide of Akeneo Unclassified Product Exporter

Updated 17 October 2023

Unclassified Product Exporter Extension Guide- This extension allows the admin to export unclassified Product and Product models to other eCommerce platforms from Akeneo.

Note- This module is compatible with all other eCommerce platforms.

Check the overview of the plugin –

MYpRIywPAt8

Basic Requirements:

  • This module works with Akeneo 3.x, 4.x, 5.x, 6.x and 7.x. Download Akeneo from here
  • Node and as well as Yarn packages need to be installed.
  • This module is compatible with the Akeneo community and Enterprise(Flexibility) edition.
  • For the Akeneo installation, your Akeneo server should meet these system requirements.

Features

  • The admin can export unclassified products from Akeneo.
  • The admin can export unclassified product models from Akeneo.
  • This extension works with all Akeneo modules having product export option.
  • The admin can export the product in both the format ie. CSV, XLSX.
  • This module is compatible with latest version of Akeneo 7.x.

Installation

For the module, there are two different installation processes available.

  1. Composer Installation
  2. Manual Installation

Installation using Composer Installation

Read This Blog

Searching for an experienced
Akeneo Company ?
Find out More

Before beginning the composer installation

1: Get the ACCESS KEYS [Create a support ticket]
2: In Akeneo composer.json, add our repository as well as the installation script.

For Akeneo 6.x and 7.x

{
  "scripts": {
        "post-update-cmd": [
           "vendor/webkul/unclassifiedproductbundle/src/Webkul/UnclassifiedProductBundle/install/config.sh COMPOSER=true NO_DOCKER=true"
        ],
        "post-install-cmd": [
           "vendor/webkul/unclassifiedproductbundle/src/Webkul/UnclassifiedProductBundle/install/config.sh COMPOSER=true NO_DOCKER=true"
        ],
        "post-create-project-cmd": [
          "vendor/webkul/unclassifiedproductbundle/src/Webkul/UnclassifiedProductBundle/install/config.sh COMPOSER=true NO_DOCKER=true"
       ]
   },
  "repositories": [{
    "type": "composer",
    "url": "https://akeneorepo.webkul.com/"
  }]
}

For Akeneo <=5.x 

{
  "scripts": {
        "post-update-cmd": [
           
"vendor/webkul/unclassifiedproductbundle/composer_install.sh"
        ],
        "post-install-cmd": [
           
"vendor/webkul/unclassifiedproductbundle/composer_install.sh"
        ],
        "post-create-project-cmd": [
         
"vendor/webkul/unclassifiedproductbundle/composer_install.sh"
       ]
   },
  "repositories": [{
    "type": "composer",
    "url": "https://akeneorepo.webkul.com/"
  }]
}

3: Use composer to install the extension.

         composer require webkul/unclassifiedproductbundle

4: Complete the authentication form.
5: Send a Message of Success
6: Delete your browser’s cache.

Manual Installation for Version 6. x and 7. x

  •  After unzipping the appropriate extension zip, merge the “src” folder into the akeneo project.
  • From the PIM directory, run the following command over the NO-DOCKER Instance.
./src/Webkul/UnclassifiedProductBundle/install/config.sh COMPOSER=false NO_DOCKER=true
  •  Run the command below over the PIM directory’s DOCKER instance.
./src/Webkul/UnclassifiedProductBundle/install/config.sh COMPOSER=false NO_DOCKER=false

Manual Installation for Version 4.0.x to 5.0.x

Please follow the below steps for installing the Unclassified Product Exporter module in your Akeneo PIM platform.

  • Unzip the respective extension zip then merge the “src” folder into the Akeneo project root directory.
src-icecat-1-1200x287-1
  • Goto config/Bundles.php then add line:
Webkul\UnclassifiedProductBundle\UnclassifiedProductBundle::class => ['all' => true],
unclasified-src

in return array.

  • Run this command after ssh to your akeneo server by terminal and navigating to Akeneo installation directory (ex. cd /opt/bitnami/apps/akeneo/htdocs).
rm -rf ./var/cache/** && php bin/console unclassifiedproduct:setup:install
  • If you are using php-fpm. Then you need to restart the php-fpm services and apache web server.

For Akeneo 5

sudo service php-fpm7.4 restart

For Akeneo 4

sudo service php-fpm7.3 restart

Docker Installation Command :

For docker instance:
sudo -su root;
alias docker_php='docker-compose run -u www-data --rm php php';
alias docker_yarn='docker-compose run -u node --rm node yarn';
docker_php bin/console cache:clear --env=prod;
docker_php bin/console pim:installer:assets --symlink --clean --env=prod;
docker_php bin/console d:s:u --force;
docker_yarn run webpack;
docker_yarn run update-extensions;
docker_yarn run less;
docker-compose restart fpm;

Installing Module For Version 3.x

Please follow these steps for installing the Akeneo Unclassified Product Exporter module in your Akeneo PIM platform.

1 – Unzip the respective extension zip then merge the “src” folder into akeneo project root directory.

src_2_x-1-1200x283-1

2 – Goto app/AppKernel.php then add line.

new Webkul\UnclassifiedProductBundle\UnclassifiedProductBundle(),
unclasifies-appkernel

3 –Run this command after ssh to your akeneo server by terminal and navigating to Akeneo installation directory (ex. cd /opt/bitnami/apps/akeneo/htdocs).

rm -rf ./var/cache/** && php bin/console unclassifiedproduct:setup:install

4– If you are using php-fpm. Then you need to restart the php-fpm services a apache web server.

sudo service php-fpm7.2 restart

Common Issues After Installation

If you don’t see the module’s translation, you’ll need to clear your browser cache and refresh the page to view the translations.

Uninstall Module: For Akeneo 6 and 7

  • From the PIM directory, run the command below over the NO-DOCKER Instance.
./src/Webkul/UnclassifiedProductBundle/uninstall/uninstall.sh COMPOSER=false NO_DOCKER=true
  • Run the command below over the PIM directory’s DOCKER instance.
./src/Webkul/UnclassifiedProductBundle/uninstall/uninstall.sh COMPOSER=false NO_DOCKER=false

Unclassified Product Creation

After installing the module, we need to have or create an unclassified product or product model.

For creating a product we need to follow the given steps-

Step 1– Click on the Product from the left menu bar and click on CREATE.

Products

Step 2- Now click on the product type which you want to create, let’s create a Product.

screenshot-192.168.1.91_82-2021.09.03-18_10_51

Here, write SKU and select Family for the product, then click on Save.

Products-1

Now, the admin will see the created product and can attribute details accordingly.

We will keep the product unclassified and click on Save.

Product-tshirt01-Edit

Unclassified Product Export

To export the product we need to create an export profile.

Step 1- Firstly, navigate to the Export Section from the left menu bar and click on the Search bar to search Product.

Export-profiles-management-2

Step 2- Now select Product export as per the choice (ie. CSV or XLSX).

We will go with CSV Product export.

Export-profile-Demo-CSV-product-export-Show

Click on Edit.

Export-profile-Demo-CSV-product-export-Edit

Step 3- Here, the category selection list is open, select the Unclassified Products and click on CONFIRM button.

Export-profile-Demo-CSV-product-export-Edit-1

Step 4- Write the name of the unclassified product which you want to export.

Also, we can export through SKU by writing it in Identifier else add attributes as per the choice.

Export-profile-Demo-CSV-product-export-Edit-2

Step 5- Click on Save, we will be redirected to the Export Now page.

Step 6- Now click on Export Now.

Process-tracker-Show-job-3

Now click on DOWNLOAD GENERATED FILES, we will get two options for download ( ie. Download generated files/ download generated archive ) choose as per the choice.

download-file

Step 7- Now the unclassified product will be downloaded.

product

Support

So, that was all about the Akeneo Unclassified Product Exporter Guide. For any queries or doubts, reach out to us at [email protected] . You can also raise a ticket at our HelpDesk system webkul.uvdesk.com

Please explore our Akeneo Development Services and Quality Akeneo Extensions.

Current Product Version - Akeneo 3 to 5 || 1.0.0, Akeneo 6 || 2.0.0 and Akeneo 7 || 3.0.0

Supported Framework Version - 3.x.x, 4.x.x, 5.x.x, 6.x.x & 7.x.x

Blog Version - 3.x.x, 4.x.x, 5.x.x, 6.x.x & 7.x.x
  • Version 3.x.x, 4.x.x, 5.x.x, 6.x.x & 7.x.x
  • Version 3.x.x & 4.x.x & 5.x.x
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Back to Top

Message Sent!

If you have more details or questions, you can reply to the received confirmation email.

Back to Home

Table of Content