Topic: Tracmor and online store ?

Hello There,

Does anyone is uisng tracmor in corporation with any type of online store?

i.e exporting csv file, than importing to some type of shopping cart ?

Bye,

Re: Tracmor and online store ?

We do have customers using Tracmor to populate their product listings on a website. Usually this is done by querying the MySQL database directly. For example, you could query the asset_model table to get get all the product names and descriptions.

Justin Sinclair

Got Inventory? Get Tracmor.

Re: Tracmor and online store ?

Hello Jsinclair,

do you know any name of those shoping carts that already are working with tracmor, any website as areference, or any documnetation or something like that,

Thank you

Re: Tracmor and online store ?

I don't know of any shopping carts with integration already built in. Most likely you will need to know SQL and a server-side scripting language like PHP or ASP.NET, to query your Tracmor database and populate the website with the information you want.

Here is some basic sample SQL to query for all your asset models ordered alphabetically:

SELECT `short_description`, `long_description` FROM `asset_model` ORDER BY short_description
Justin Sinclair

Got Inventory? Get Tracmor.