AvS_FastSimpleImport icon indicating copy to clipboard operation
AvS_FastSimpleImport copied to clipboard

Wrapper for Magento ImportExport functionality, which imports products and customers from arrays

Results 101 AvS_FastSimpleImport issues
Sort by recently updated
recently updated
newest added

In https://github.com/avstudnitz/AvS_FastSimpleImport/blob/master/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Category.php#L477 you are setting the category position to 10000 when it is not specified. I am currently tracking an issue that apparently relates to this. The symptoms are, after...

If you supply only the field `_media_image` it crashes ``` [Fri Jul 08 17:02:47.554289 2016] [:error] [pid 29448] [client 10.4.2.116:51072] PHP Fatal error: Call to undefined method Mage_ImportExport_Model_Import_Adapter_Csv::setValue() in /home/amk/local-workspace/foo/public/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product.php...

I have selected the 'additional images' from system/config and in the array have my images assigned: ``` [image] => 'image.png', [thumbnail] => 'thumbnail.png', [small_image] => 'small_image.png', [image_foo] => 'additional_image.png' ```...

https://github.com/avstudnitz/AvS_FastSimpleImport/blob/a8709a574dd5e17da43023bfb3810a5a022f2254/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Bundle.php#L78 see this commit https://github.com/avstudnitz/AvS_FastSimpleImport/commit/569ece6ec63c9628f43ce7deff47d1a01d1f6411

I have updated Magento from 1.7.0.2 to 1.9.3.3 and now, only the first product is saved in a foreach loop. foreach($products as $data) { $import = Mage::getModel('fastsimpleimport/import'); try { $import->processProductImport($data);...

When importing from a CSV I'm getting the below error, which makes it difficult to troubleshoot where the problem is with the CSV. Usually errors in the CSV return a...

Hello, I try import and add an image on the products, but is not working and not show me an error. '_type' => 'simple', '_attribute_set' => 'Default', '_product_websites' => 'base',...

I am getting following error: > `Call to undefined method Mage_Core_Helper_Data::unEscapeCSVData() in /var/www/html/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Category.php on line 1276.` How it can be resolved. Is it related to SUPEE-7405?

How can I assign one product into multiple categories? ``` $data = array(); foreach($data_array as $key=>$value) { $data[] = array( '_root' => 'Default Category', '_category' => $value, '_sku' => $key,...

Hi, There is a bug within customer import script. While there is a duplicated line and ignore_duplicates flag is set to 1, an error raises: E-mail is duplicated in import...