raunhar Posted February 1, 2021 Share Posted February 1, 2021 (edited) 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 Edited February 1, 2021 by raunhar (see edit history) Link to comment Share on other sites More sharing options...
Prestachamps Posted February 1, 2021 Share Posted February 1, 2021 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 More sharing options...
JBW Posted February 1, 2021 Share Posted February 1, 2021 Check your servers ICU version, it's a known bug: https://github.com/PrestaShop/PrestaShop/issues/22300 Link to comment Share on other sites More sharing options...
raunhar Posted February 3, 2021 Author Share Posted February 3, 2021 I updated the PHP versio to 7.4, and it worked. Link to comment Share on other sites More sharing options...
JBW Posted February 3, 2021 Share Posted February 3, 2021 Prestashop is not offcially compatible to PHP 7.4 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now