Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing a script that automatically imports users into magento. Here is a code snippet:

$customer = Mage::getModel("customer/customer");
$customer->website_id = $websiteId; 
$customer->setStore($store);

$customer->loadByEmail($riga[10]);

echo "Importo ".$data[0]."\n";
echo "  email :".$data[10]."\n";

$customer->setTaxvat($data[7]);
$customer->lastname =    $lastname;
$customer->email =       $data[10]; 
$customer->password_hash = md5($data[0]);

$customer->save();

The problem is that the users are created as "not confirmed", while I would like them to be "confirmed".

I tried with:

$customer->setConfirmation('1');

before the save, but it didn't work. Does anybody know how to confirm the user?

Thanks!

share|improve this question

2 Answers

up vote 6 down vote accepted

I think setConfirmation() is waiting for a confirmation key. Try passing null and I think it will work?

Just to clarify:

$customer->save();
$customer->setConfirmation(null);
$customer->save();

Should force confirmation.

share|improve this answer
That made it. :-) I'd just like to highlight that when creating a customer it is important to save before and after setting the confirmation key, as melee pointed out. – fdierre Aug 6 '10 at 9:18

When I created accounts, they were already confirmed, but they were disabled! This fixed it:

$customer->save();
$customer->setConfirmation(null);
$customer->setStatus(1);
$customer->save();
share|improve this answer
Welcome to SO. Nicely answered, though it's worth reading existing answers to see if the problem has already been solved in a similar way. – Richie Cotton Jan 20 '12 at 11:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.