Hello
I installed a localhost server on my ubuntu 24.04 according to the documentation https://doc.ubuntu-fr.org/phpmyadmin#acces_root
I have created several new sites with no problems.
I can't manage to restore 2 akeeba backups of joomla sites that were online last week before the domain name was stopped.
Each time I use the script in the documentation
CREATE USER 'nom_utilisateur_choisi'@'localhost' IDENTIFIED BY 'mot_de_passe_solide'; GRANT ALL ON *.* TO 'nom_utilisateur_choisi'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES; QUIT;
The restoration goes all the way
But when I connect the site I get errors. What should I do?
****************
...
DatabaseDriver->setQuery() in /var/www/html/aza/libraries/src/Menu/SiteMenu.php (line 166)
)
->bind(':currentDate2', $currentDate)
->order($this->db->quoteName('m.lft'));
$items = [];
$iterator = $this->db->setQuery($query)->getIterator();
foreach ($iterator as $item) {
$items[$item->id] = new MenuItem((array) $item);
}
...
regards