Magento – Getting product information from a external database

databaseimportexportmagento-1.9MySQL

I have been given an unfinished product from a client, and it is a mess.

This is my first time ever using Magento, but I have used other CMS's. So please bare with me as I am a "newbie". I do have experience with PHP, MYSQL, and a few others.

Let me give a few specifics, so I can give you a better idea on what I am trying to accomplish.

I am using Magento 1.9

My client owns a bookstore, and they get almost 100 new books each week (all different IBSN's). As it sits right now they are going through a lengthy process to export and import CSV files to get this information on Magento.

So leading into my question, can we import/stream this info from an external database? We have access to a database that has all of the products information (descriptions, author info, publication info, etc) and all we need to do is link the 2 together.

Is this possible? Or a similar way that could help the ease of this process?

Thank you in advanced for the help.

Best Answer

There are many third party extensions that can be modified to import products, you could have the file copied to your Magento var folder, then run a cron to import the products on a daily basis.

I would NOT try to import products directly to the database.

Related Topic