AvS_FastSimpleImport
AvS_FastSimpleImport copied to clipboard
Wrapper for Magento ImportExport functionality, which imports products and customers from arrays
Hello, we used this tool now since 5 years and it works fine. Now we have a problem that we have at our magento 1.9.3 Version the search Extension "Elasticsearch"...
I add on data _category => "car/home/shop", that is working fine. but when I put an array example: _category => array("car/home/shop","car/home/shop/aaa"), and $cat[] = array('sku'=> 1005,'_category'=>'car/home/shop'); $cat[] = array('sku'=> '','_category'=>'car/home/shop/ddd');...
When creating a downloadable product in the backend, an entry is created in the table `downloadable_link_price`. When creating a downloadable product via the import, the table remains empty. We need...
When I select a file for uploading through admin import It will be stuck on loading and nothing do after that, then have to refresh the page but can't see...
I noticed that import categories is kind of slow, not much faster than magento build-in category model save() in my case. (I am not sure why that happen, maybe the...
insert into temp category is kind of slow if you have thousands categories existed. And in my case, I need run import data from time to time every day, and...
Without this fix, you cannot overwrite url_keys with product import. The lines are copied from Magento Core Files.
Currently I am using the following update data to update existing customer entities: ``` $importData[] = array( '_website' => $websiteId, 'email' => $emailAddress, 'group_id' => $customerGroupId, ); ``` As you...
Hi, I am trying to import products csv with 3 attributes. I am trying to update products attributes with CSV with 420 entries it is giving the following error. SQLSTATE[23000]:...
Fixes #281 This is not my solution, it's the solution provided by https://github.com/YouweGit/AvS_FastSimpleImport/commit/a4582527c2621ed54db1af89a4cb0506f204f58f with some minor fixes (an array key) and an update to the Main integration test. I also...