Home > Software design >  Joomla 4 user login programmatically
Joomla 4 user login programmatically

Time:11-10

In the Joomla 3x, I have this code to login an user, it worked well.

$options = array();
$credentials = array();

$credentials['username'] = $username;
$credentials['password'] = $password;

$result = JFactory::getApplication()->login($credentials, $options);        
$result = ($result) ? 1 : 0;

echo json_encode( array('loggedIn' => $result) );
jexit();

But in the Joomla 4.2 it says error.

error

How to solve it? thanks!

CodePudding user response:

I found this code, it's worked with Joomla 4.

$options = array();
$credentials = array();

$credentials['username'] = $username;
$credentials['password'] = $password;

$container = \Joomla\CMS\Factory::getContainer();
$container->alias(\Joomla\Session\SessionInterface::class, 'session.web.site');
$app = $container->get(\Joomla\CMS\Application\SiteApplication::class);
$result = $app->login($credentials, $options);      
$result = ($result) ? 1 : 0;

echo json_encode( array('loggedIn' => $result) );
jexit();
  • Related