I have this code that sucessfully create a user but it's always created twice (I can confirm that the function is only used once, as I do an exit right after, as soon as the ->save() is called, 2 users are created with the same information).
Thanks for your help, its driving me crazy
public function createCustomer($data){
$customer = Mage::getModel('customer/customer');
$password = 'randompassword';
$email = 'store-'.$data['ID'].'-'.rand(1,999).'@stores.com';
$customer->setWebsiteId(Mage::app()->getWebsite()->getId());
$customer->loadByEmail($email);
if(!$customer->getId()) {
$groups = Mage::getResourceModel('customer/group_collection')->getData();
$groupID = '3';
$customer->setData( 'group_id', $groupID );
$customer->setEmail($email);
$customer->setFirstname($data['name']);
$customer->setLastname('('.$data['ID'].')');
$customer->setPassword($password);
$customer->setConfirmation(null);
$customer->save();
return $customer->getId();
}
echo '<span style="color:#f00;">Error : A customer with this email address already exists</span>';
return null;
}
EDIT -----------------
If I remove the random from the address , only 1 get added, so I guess it comes from the controller where I call the function (but I don't get any error messages or any output), so here it is: I fetch a csv file from a controller in my custom module. I call the page directly in the url, so I don't think it is called twice.
public function importUsersAction(){
$handle = fopen(Mage::getBaseUrl()."/media/import/users.csv", "r");
$i=0;
while (($element = fgetcsv($handle, 5000, ";")) !== FALSE) {
if($i==1){
var_dump($element);
$row['ID'] = utf8_encode($element[1]);
$row['name'] = utf8_encode($element[2]);
$row['street'] = utf8_encode($element[3]);
$row['city'] = utf8_encode($element[4]);
$row['zipcode'] = utf8_encode($element[5]);
$row['region_code'] = array('NL'=>69,'NS'=>71,'BC'=>67,'AB'=>66,'SK'=>77,'MB'=>68,'ON'=>74,'NB'=>70,'QC'=>76);
$row['region'] = $row['region_code'][utf8_encode($element[6])];
$row['phone'] = utf8_encode($element[7]);
$row['fax'] = utf8_encode($element[8]);
$data['IDUser'] = $this->createCustomer($row);
exit;
}
$i++;
}
}
It is creating 2 users with slightly different emails (cause I put a random in it), so its like my createCustomer function is called twice but I don't see how it is possible