Jump to content

Issue after upgarde to 1.7.7.1


raunhar

Recommended Posts

I installed a fresh 1.7.6.9 version of prestashop, and then upgraded to 1.7.7.1 using 1 click upgrade. But after that I am not able to access the backend. The backend login page, just shows the prestashop logo, and the version.

PHP version is 7.2

The frontend is working

How to correct that

presta1771.png

Edited by raunhar (see edit history)
Link to comment
Share on other sites

Hi,

you should enable the debug mode, as most probably you have one database table missing  usually it's ps_employee_session table).

If this is your case, then you can execute this inside your PhpMyAdmin(if you have other Database Prefix then ps_ then modify the table name  accordingly to your prefix ps_employee_session

CREATE TABLE IF NOT EXISTS `ps_employee_session` (
  `id_employee_session` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
  `id_employee` int(10) UNSIGNED DEFAULT NULL,
  `token` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`id_employee_session`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
COMMIT;

Kind regards, Leo

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...