Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9196427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:50:50+00:00 2026-06-17T21:50:50+00:00

I have a CSV product list with about 13000 SKUs and I’m using MAGMI

  • 0

I have a CSV product list with about 13000 SKUs and I’m using MAGMI to manage it.

If I run MAGMI in UPDATE mode, it will only update existing products and skip new ones, exiting with (example) “info:Skus imported OK:21/21″…

Is there a way to know WHICH products were updated?

I feel a bit lazy about going through the code, so please have patience on me for this one…

Thanks in advance!
Paulo

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:50:52+00:00Added an answer on June 17, 2026 at 9:50 pm

    Just create a basic plugin that outputs the log for each item in the Magmi Log.

    1) Create file in magmi root plugins/extra/itemprocessors/basicitemlogger/basicitemlogger.php

    2) Open the file and paste in the following

    <?php
    /**
     * Class BasicItemLogger
     * @author Axertion
     *
     * Returns basic SKU for item in the Magmi output log.
    */ 
    class Magmi_BasicItemLogger extends Magmi_ItemProcessor
    {
    
    
        public function getPluginInfo()
        {
            return array(
                "name" => "Basic Item Logger",
                "author" => "Axertion",
                "version" => "0.0.1",
                "url"=> "http://axertion.com"
            );
        }
        static public function getCategory()
        {
            return "Input Data Preprocessing";
        }
    
        public function getPluginParams($params)
        {
        }
    
        public function initialize($params)
        {
        }
    
        public function processItemAfterId(&$item,$params)
        {   
    
            if($params['new'] != 1)
            {
                $this->log("Item {$item["sku"]} has been updated.", "info");
            }
    
            return true;
        }
    }
    

    3) In the Magmi UI, go to the Configure Current Profile section. Enable the Basic Item Logger v0.0.1 and click Update Profile.

    4) The Runtime Infos pane will now list out each item that is NOT NEW and was updated, like this:

    Basic Item Logger v0.0.1 - Item 123253221 has been updated.
    Basic Item Logger v0.0.1 - Item 520448042 has been updated.
    Basic Item Logger v0.0.1 - Item 606852342 has been updated.
    Basic Item Logger v0.0.1 - Item 955884964 has been updated.
    

    Furthermore, you can easily modify the plugin code (which is very basic) to write to a simple log file. Magmi gives you access to the entire item object. You can base can write some nifty logic based off the item column values, by using $item['column_name'] within the processItemAfterId() method. You can also use processItemBeforeId() to change the item object before it is processed by Magmi.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have managed to make a csv which imports my products using magmi into
I have a product csv with about 50k products in it that I am
I have a custom script that outputs a list of particular products in csv
I have a datafile: https://dl.dropbox.com/u/22681355/example.csv Read file: example<-read.csv(example.csv) example<-example[,-1] example[,1] contains a list of
I have a class for products import from CSV file operation which requires about
I have created csv file and import that using System -> Import/Export -> Dataflow-Profile
I have a project now where I will have a large chunk of CSV
I have a requirement where i need to search product barcode from a csv
http://img32.imageshack.us/img32/6649/workspace1001.png big version I have this product data in a csv file, but some
I currently have a CSV that I have built using StringBuilder in C#. This

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.