Reading list Switch to dark mode

    Akeneo Icecat Connector

    Updated 29 January 2024

    Introduction

    Akeneo Icecat Connector allows you to supplement Akeneo PIM product data with the extensive Icecat catalog.

    It works with an open Icecat free catalog.

    This connector can only accommodate simple products.

    The Akeneo Icecat App also helps in the import of Icecat catalogue content from Icecat to the Akeneo app.

    Check a brief overview of the plugin –

    Searching for an experienced
    Akeneo Company ?
    Find out More
    Z4lDJqFIIbI

    Basic Requirements:

    • This module works with Akeneo 3.0.x, 3.1.x, 3.2.x, 4.0.x, 5.0.x, 6.0.x. and 7.0.x. Download Akeneo from here
    • Node and Yarn packages need to be installed.
    • This module is compatible with the Akeneo community and Enterprise(Flexibility) edition.
    • If you want to use this extension on Akeneo EE Serenity mode, please contact us.
    • For the Akeneo installation, your Akeneo server should meet these system requirements.

    Features

    • EAN attribute and product code will be used to match Icecat products via their web API.
    • Only simple products are supported by Akeneo Icecat Connector.
    • You can modify the icecat attribute type during attribute import under the Icecat attribute type mapping tab.
    • In this Akeneo PIM attributes must also be mapped to Icecat features.
    • Akeneo products will enrich via running a product enrich job.
    • In this, you can map Icecat common attributes like Ean, Product code, Vendor (Brand), Name, Description, Short description, Summary description, Short summary description, and Pictures with Akeneo attribute through UI.
    • Icecat Akeneo Connector is compatible with the latest Akeneo version 7.0.x
    • In this, you can also do other Icecat feature mapping to map other Icecat feature attributes with the Akeneo attribute.
    • You can also map the Icecat locale with the Akeneo locale.

    Composer Installation

    Read This Blog

    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/icecatconnectorbundle/src/Webkul/IcecatConnectorBundle/install/config.sh COMPOSER=true NO_DOCKER=true"	
            ],	
            "post-install-cmd": [	
               "vendor/webkul/icecatconnectorbundle/src/Webkul/IcecatConnectorBundle/install/config.sh COMPOSER=true NO_DOCKER=true"	
            ],	
            "post-create-project-cmd": [	
              "vendor/webkul/icecatconnectorbundle/src/Webkul/IcecatConnectorBundle/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/shopifyconnector/composer_install.sh"
            ],
            "post-install-cmd": [
               
    "vendor/webkul/shopifyconnector/composer_install.sh"
            ],
            "post-create-project-cmd": [
             
    "vendor/webkul/shopifyconnector/composer_install.sh"
           ]
       },
      "repositories": [{
        "type": "composer",
        "url": "https://akeneorepo.webkul.com/"
      }]
    }
    

    3: Use composer to install the extension.

             composer require webkul/icecatconnectorbundle

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

    Installing Module for Version 6.0.x and 7.0.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/IcecatConnectorBundle/install/config.sh COMPOSER=false NO_DOCKER=true
    •  Run the command below over the PIM directory’s DOCKER instance.
    ./src/Webkul/IcecatConnectorBundle/install/config.sh COMPOSER=false NO_DOCKER=false

    Module Installation for Version 4. x to 5. x

    Before installing the module you must require the connector dependencies.

    php -d memory_limit=4G /usr/local/bin/composer --prefer-dist --no-scripts require guzzlehttp/guzzle 6.*;
    php -d memory_limit=4G /usr/local/bin/composer --prefer-dist --no-scripts require prewk/xml-string-streamer 0.9.*;

    Please follow the below steps for installing the Akeneo Icecat Connector 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
    • Goto config/Bundles.php then add line:
    Webkul\IcecatConnectorBundle\IcecatConnectorBundle::class => ['all' => true],
    Screenshot-from-2021-01-27-13-41-31

    in return array.

    • Copy the “config” folder into the akeneo project root directory for routing.
    conf-icecat
    • You have to navigate first to Akeneo installation directory (Ex: cd /opt/bitnami/apps/akeneo/htdocs). After SSH, you have to run the command to your Akeneo server by the terminal.
    php bin/console ca:cl --env=prod && php bin/console icecat:setup:install

    Docker Installation Command :

    For Akeneo 5

    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;

    For Akeneo 4

    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 less;

    Module Installation for Version 3. x

    Before installing the module you must require the connector dependencies.

    php -d memory_limit=4G /usr/local/bin/composer --prefer-dist --no-scripts require guzzlehttp/guzzle 6.*;
    php -d memory_limit=4G /usr/local/bin/composer --prefer-dist --no-scripts require prewk/xml-string-streamer 0.9.*;

    Please follow the below steps for installing the Akeneo Icecat Connector module in your Akeneo PIM platform.

    • Unzip the respective extension zip then merge the “src” folder into the Akeneo project root directory.
    src-icecat-2
    • Goto app/AppKernel.php then add the following line in function registerProjectBundles().
    new Webkul\IcecatConnectorBundle\IcecatConnectorBundle(),
    app-kernel
    • Goto app/config/routing.yml then add these lines at top of the file
    webkul_icecat_connector:
        resource: "@IcecatConnectorBundle/Resources/config/routing.yml"
        prefix: /
    Screenshot-from-2021-01-27-13-42-22
    • You have to navigate first to Akeneo installation directory (Ex: cd /opt/bitnami/apps/akeneo/htdocs). After SSH, you have to run the command to your Akeneo server by the terminal.
    php bin/console ca:cl --env=prod && php bin/console icecat:setup:install

    Common Issues After Installation

    It might happen that even after proper installation, upon opening your Akeneo admin dashboard, you see a loading screen. In that case, do check for the following solution:

    • Webpack Installation: If you get the below error
    Webpack-error-4

    It means that a web pack is not installed in your system. Run the following command

    npm install --save-prod webpack npm install
    • Module routing.yml is not configured properly. Re-check the routing.yml file as mentioned in the 3rd step of Module Installation
    • Clear your browser cache.

    Uninstall Module: For Akeneo 6 and 7

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

    Workflow

    After you’ve successfully installed the module in Akeneo, you’ll notice an Icecat connector icon in the bottom left corner, as shown below.

    Dashboard-3


    Setup Credential

    Note: You must first create a profile on Icecat’s end, where you must provide all of your information, including your username, password, and email address.

    https___icecat.co_.uk_myIcecatNew

    To set up a credential you have to click on the icon on the Icecat Connector.

    After that, it will take you to a new page where you must fill in the information you entered in Icecat, such as:

    • Icecat username
    • Icecat password
    screenshot_from_2023_04_26_15_56_57-1

    After that, you have to click on Save to save the credentials.

    Icecat Common Attributes Mapping

    In this, you have to map your Akeneo attributes with the Icecat attribute so that they can syn properly and while importing data from Icecat to Akeneo there will be no error.

    You have to map the following attributes:

    • EAN attribute
    • Product code
    • Vendor (Brand)
    • Name
    • Title
    • Description attribute
    • Short description attribute
    • Short summary description attribute
    • Pictures attribute
    • Summary description attribute
    Akeneo-Icecat-Connector-1

    Icecat Other Attribute Mapping

    Important :

    Prior to the Icecat property being added, You must first perform the features mapping job before adding the Icecat attribute.

    Feature Mapping Job

    To do so, go to Import>>Create Import Profile and follow the steps. Then fill in the necessary information, such as the code, label, and job type(Features Mapping).

    Import-profiles-management

    After that, click the Save button. Then, to start the execution process, click Import Now.

    Process-tracker-_-Show-job-8

    After completing the job, you’ll be able to see the imported Icecat attributes in a drop-down menu and select the attribute that best suits your needs.

    Akeneo-Icecat-Connector-2

    Then you have to map the Icecat attributes with Akeneo attributes in which the value will be imported.

    Akeneo-Icecat-Connector-3

    Icecat attribute type mapping

    In this you can add a new Icecat attribute that is imported from Icecat then you can map that attribute with the Akeneo attribute type.

    Akeneo-Icecat-Connector-4

    If you map the attribute type, the attribute from Icecat will be imported in the chosen attribute type to Akeneo.

    If you don’t map the attribute type, the attribute will be imported according to the Icecat attribute type.

    Akeneo-Icecat-Connector-5

    After you’ve mapped an attribute, you’ll need to create an import attribute job in Akeneo to import the attribute you’ve mapped.

    Import-profiles-management-3

    Then click on the Icecat attribute to the import tab and select the attribute which you have mapped to import the attribute in Akeneo.

    Import-profile-Import-Attribute-_-Edit

    Click the Save button after you’ve picked the attribute.

    Import-profile-Import-Attribute-_-Edit-1

    Then, to start the work of importing attributes, click the import button.

    Process-tracker-_-Show-job-10

    You can see the attributes in the Akeneo attribute once the import procedure is complete.

    Attributes-5

    Locale Mapping

    In this section, you can map Akeneo local with Icecat local.

    Akeneo-Icecat-Connector-6

    Create a Simple Product

    You can also create a simple product in Akeneo. Therefore, navigate to Products. Then click the  Create button.

    To create a simple product click on the simple product.

    ice-cat-simple-product

    Enter the SKU, choose a family, then click the Save button as per the below image.

    This SKU will be filled with the product that you want to import from Icecat to Akeneo.

    Specs-Lenovo-IdeaPad-S145-Notebook-39.6-cm-15.6_-Full-HD-8th-gen-Intel®-Core™-i3-4-GB-DDR4-SDRAM-2

    Then add the value EAN as SKU in Akeneo

    Products

    After that click to Save. Then the product will be created on Akeneo.

    Note – The Vendor (Brand) and EAN/SKU must then be made mandatory.

    Product-019338691231-_-Edit

    After that, assigning a product to a certain category is required, as is importing data for that category of products.

    Product-019338691231-_-Edit-1

    Then click on the Save button.

    If you’ve entered an Icecat EAN number as an SKU in Akeneo, you’ll need to map product code to EAN in attribute mapping, as illustrated in the figure below.

    Akeneo-Icecat-Connector-7

    Import Jobs

    In this Icecat Akeneo Connector, there are three types of import jobs.

    • Features Mapping
    • Import Attribute
    • Enrich Product
    Import-profiles-management-1

    Now to import and enrich Akeneo PIM product data with the rich Icecat catalog you have to create an import job for that navigate to Import>>Create Import Profile.

    Import-profiles-management-2

    Then after clicking on create Import Profile it will redirect you to the new page in which you have to fill in details like:

    • Code
    • Label
    • Job
    Import-profiles-management-2

    After that click on Save then go to the Content section and select your channel & locales.

    Then you can use various filters for deciding which products to import.

    Therefore you can even import some specific products using their SKU values using commas for more than one SKU.

    Import-profile-Enrich-Product-_-Edit
    Import-profile-Enrich-Product-_-Edit-1

    After that, click on Global setting in this you can do two things:

    • Enable/Disable Download Image
    • Fallback locale
    Import-profile-Enrich-Product-_-Edit-2

    Then click Save to save your changes, then Import, and wait for the product execution process to finish.

    Process-tracker-_-Show-job-11

    Once the import process is finished, you can see the product data filled.

    Product-S145-_-Edit-1200x589-1
    Product-S145-_-Edit-1-1200x675-1

    Support

    This was all about the Akeneo Icecat Connector. I hope you must have the got the idea of our module. Thanks for taking the time in reading this blog.

    And also, please don’t forget to share your feedback and suggestions under the comment box given below.

    Moreover, If you have any queries or suggestions, then feel free to add a ticket at our HelpDesk system or reach out to us at [email protected].

    Please explore our Akeneo Development Services and Quality Akeneo Extensions.

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

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

    Blog Version - Akeneo - 3.x.x, 4.x.x, 5.x.x, 6.x.x & 7.x.x
    • Version Akeneo - 3.x.x, 4.x.x, 5.x.x, 6.x.x & 7.x.x
    • Version Akeneo - 3.x.x, 4.x.x, 5.x.x & 6.x.x
    • Version Akeneo - 3.x.x, 4.x.x & 5.x.x
    • Version Akeneo - 2.0.x, 2.1.x, 2.2.x, 2.3.x, 3.0.x, 3.1.x, 3.2.x and 4.0.x
    • Version Akeneo - 2.0.x, 2.1.x, 2.2.x, 2.3.x, 3.0.x, 3.1.x and 3.2.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