motobuddy:
Is anyone still using this with the newer versions of turbo Lister? I tried to import the file it makes and it just say it cant import it? any help?
Yep I'm using it with the latest version of Turbo Lister. Turbo Lister is a nightmare to get working correctly and the vast majority of problems with importing CSV files are due to CR/Line feed characters in the product description field. It took me ages to work out that this was what was happening everytime I tried to import the CSV file.
Any how you can strip all the nasty little culprits out when the CSV file is created:
In the file Ebay.php find the following:
function zen_ebay_cleaner ($str) {
//$str = str_replace(',', '","', $str);
$str = str_replace('"', '""', $str);
Directly below these lines add the following code:
$str = str_replace(chr(10), " ", $str); //remove carriage returns
$str = str_replace(chr(13), " ", $str); //remove carriage returns
$str = str_replace('\r', '', str_replace('\n', '', $str));
This did the trick for me. When you are importing the file into Turbolister, if you still get problems, try deselecting the fields to import one by one until you find the field that is causing you problems...
P.S. the other main cause of problems is the use of OpenOffice to manipulate the CSV file before import. Dont do this, if you have to change it use something like the free prog CSVed.