1054 Unknown column 'c.description_bottom' in 'field list'

Phoca Cart - complex e-commerce extension
adm
Phoca Member
Phoca Member
Posts: 41
Joined: 19 Nov 2008, 12:12

1054 Unknown column 'c.description_bottom' in 'field list'

Post by adm »

com_phocacart_v5.0.0Beta36
pkg_phocacart_modules_v5.0.0Beta31

After the update, the following error occurs when displaying subcategories or products on the front page. Regardless of whether the template is used cassoipeia or nature.

1054 Unknown column 'c.description_bottom' in 'field list'
User avatar
Benno
Phoca Hero
Phoca Hero
Posts: 9122
Joined: 04 Dec 2008, 11:58
Location: Germany
Contact:

Re: 1054 Unknown column 'c.description_bottom' in 'field list'

Post by Benno »

Hi,
run this query in phpMyAdmin:

Code: Select all

ALTER TABLE `#__phocacart_categories` ADD COLUMN `description_bottom` TEXT AFTER `description`;
and if needed also this:

Code: Select all

ALTER TABLE `#__phocacart_categories_i18n` ADD COLUMN `description_bottom` TEXT AFTER `description`;
Change:
#_
to your database prefix before.

Kind regards,
Benno
Post Reply