Forums

Change name of a user Joomla

ideagrup 04 Sep, 2016
Hello,

I am trying change the name and email of a user joomla.
I don't want change my own user data

I want change it of other users.

I have tried with this but no running.
<?php
$otherUser = 1445;
$user = /JFactory::getUser($otherUser);
$user->setParam('name', "new name");
$user->setParam('email', "newemail@domain.com");
$user->save();
?>

Thans
GreyHead 05 Sep, 2016
Hi ideagrup,

The code looks OK from a quick check. Have you tried setting site Error Reporting higher to see if any errors are being generated. You could also try adding debug code to display the User object and see what is (or isn't) being changed..

Bob
This topic is locked and no more replies can be posted.