Just an update on upgrading Joomla 4 to Joomla 5 and then can’t access the backend, with error Unknown column 'a.ordering’
This problem seems to be with a lot of users.
The solution is here https://gist.github.com/Yiannistaos/8e9 ... 8ca7d31e1c
Open PhpMyAdmin > SQL and type this:
ALTER TABLE `#__menu_types` ADD COLUMN `ordering` int NOT NULL DEFAULT 0 AFTER `client_id` /** CAN FAIL **/;
UPDATE `#__menu_types` SET `ordering` = `id` WHERE `client_id` = 0;
Changing #_ to the name of the table.
This problem seems to be with a lot of users.
The solution is here https://gist.github.com/Yiannistaos/8e9 ... 8ca7d31e1c
Open PhpMyAdmin > SQL and type this:
ALTER TABLE `#__menu_types` ADD COLUMN `ordering` int NOT NULL DEFAULT 0 AFTER `client_id` /** CAN FAIL **/;
UPDATE `#__menu_types` SET `ordering` = `id` WHERE `client_id` = 0;
Changing #_ to the name of the table.
Statistics: Posted by BobShawAU — Fri May 17, 2024 1:30 am