php - catalogProductUpdate multiple category IDs -
i'm trying update website , category ids number of products in magento , i'm having issues. here's code:
$client = new soapclient('http://magentohost/api/v2_soap/?wsdl'); $session = $client->login('apiuser', 'apikey'); $productarray = array("12345" => "1,2,3", "67890" => "1,5,6"); foreach ($productarray $product_id => $cats) { $update = array( 'websites' => array(1,2,3), 'categories' => array($cats) ); $updatewebsite = $client->catalogproductupdate($session,$product_id,$update); }
when run code, it's changing products have new website ids it's updating category ids first 1 in $cats.
for example, "12345" have category id 1 , not 2 or 3 should have.
when print out $cats each product, it's showing me info correctly (as "1,2,3" , "1,5,6" examples above).
i'm not sure i've done can't seem update category ids. i've got thousands of products run through have different category ids can't doing manually!
edit - solved
i've changed code it's (which works):
$client = new soapclient('http://magentohost/api/v2_soap/?wsdl'); $session = $client->login('apiuser', 'apikey'); $productarray = array("12345" => "1,2,3", "67890" => "1,5,6"); foreach ($productarray $product_id => $cats) { $cats = explode(",", $cats); $update = array( 'websites' => array(1,2,3), 'categories' => $cats ); $updatewebsite = $client->catalogproductupdate($session,$product_id,$update); }
the categories property expect array of ids, whereas you're passing string. try using explode()
break up:
foreach ($productarray $product_id => $cats) { $update = array( 'websites' => array(1,2,3), 'categories' => explode(',', $cats) ); $updatewebsite = $client->catalogproductupdate($session,$product_id,$update); }
Comments
Post a Comment