Unknown column 'cc.archived_description' in 'SELECT'
-
PeterM
- Phoca Newbie

- Posts: 2
- Joined: 10 Jul 2026, 09:17
Unknown column 'cc.archived_description' in 'SELECT'
Hi After updating to Version 6.1.2 I get this message 'Unknown column 'cc.archived_description' in 'SELECT'' in the frontend when I click on a category. Also when I check the maintenance of the database in the backend it shows one problem and it says that tabel 'bcr6k_phocadownload_categories' has no column 'archived_description'. (from file 6.1.2.sql.). I am running Joomla 5.4.7
- Jan
- Phoca Hero

- Posts: 49490
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Unknown column 'cc.archived_description' in 'SELECT'
Hi, check the files:
administrator/components/com_phocadownload/update/sql/mysql/6.1.2.sql
There should be this instruction:
ALTER TABLE `#__phocadownload_categories` ADD COLUMN `archived_description` TEXT AFTER `description`;
The same with:
administrator/components/com_phocadownload/install/sql/mysql/install.utf8.sql
`archived_description` text, should be included there.
If the update on your site didn't update this column, try to run it manually in your database:
ALTER TABLE `#__phocadownload_categories` ADD COLUMN `archived_description` TEXT AFTER `description`;
(change #__ to your prefix)
Jan
administrator/components/com_phocadownload/update/sql/mysql/6.1.2.sql
There should be this instruction:
ALTER TABLE `#__phocadownload_categories` ADD COLUMN `archived_description` TEXT AFTER `description`;
The same with:
administrator/components/com_phocadownload/install/sql/mysql/install.utf8.sql
`archived_description` text, should be included there.
If the update on your site didn't update this column, try to run it manually in your database:
ALTER TABLE `#__phocadownload_categories` ADD COLUMN `archived_description` TEXT AFTER `description`;
(change #__ to your prefix)
Jan
If you find Phoca extensions useful, please support the project
-
PeterM
- Phoca Newbie

- Posts: 2
- Joined: 10 Jul 2026, 09:17
Re: Unknown column 'cc.archived_description' in 'SELECT'
Hi Jan,
Thanks for the help. I had to manually add the column 'archived_description'
At first it didn't work because I got an error
Syntax error or access violation: 1118 Row size too large. The maximum row size for the used table type, not counting BLOBs, is 8126. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
I did a query run >>>>
ALTER TABLE {table_name] ROW_FORMAT=DYNAMIC;
Then it worked.
Can you tell me why at first this above error occured? Was that the reason why the add column didn't work in the update process?
Thanks!
Thanks for the help. I had to manually add the column 'archived_description'
At first it didn't work because I got an error
Syntax error or access violation: 1118 Row size too large. The maximum row size for the used table type, not counting BLOBs, is 8126. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
I did a query run >>>>
ALTER TABLE {table_name] ROW_FORMAT=DYNAMIC;
Then it worked.
Can you tell me why at first this above error occured? Was that the reason why the add column didn't work in the update process?
Thanks!