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

link|improve this question

did you check both users available in same store? – Oğuz Çelikdemir Feb 7 at 23:40
They are both "Associate to website : Main Website" if it's what you mean – AlexB Feb 8 at 0:01
I guessed related with store id which you didn't specify in your function but as you stated in your comment they are both in same store, sorry. – Oğuz Çelikdemir Feb 8 at 12:58
Well , looks like my controler is called twice, so if I rename or delete the csv once processed the first time, its all good, but I would like to know how a controller can be called twice when accessed directly via url ... – AlexB Feb 8 at 14:55
The strange thing is if I put a dump inside of the controller or something , it only appears once, so I suppose the page is being reloaded right after. Even if I put an exit in it, is is running twice, only making 1 dump on the screen... – AlexB Feb 8 at 15:04
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.