Getting an error when trying to upgrade. I've tried everything I can think of. Please help.

Error
[/** * @signature 1ee831c854fe9f35115a3e672916bb91 * @version v1.10.0 * @title Make editable content translatable and add queues * * This patch adds support for translatable administratively editable * content, such as help topic names, department and group names, site page * and faq content, etc. * * This patch also transitions from the timezone table to the Olson timezone * database available in PHP 5.3. */ ALTER TABLE ost_attachment ADD lang varchar(16) AFTER inline] Duplicate column name 'lang'

I've got a bit furthe by removing all of the duplicate tables etc.

Get this now
[INSERT INTO ost_staff_dept_access (staff_id, dept_id, role_id) SELECT A1.staff_id, A2.dept_id, CASE WHEN A2.role_id = 0 THEN A3.role_id ELSE A2.role_id END FROM ost_staff A1 JOIN ost_group_dept_access A2 ON (A1.group_id = A2.group_id) JOIN ost_group A3 ON (A3.id = A1.group_id) WHERE A2.dept_id != A1.dept_id] Unknown column 'A1.group_id' in 'on clause'

    Lancia75
    something missing or change "Unknown column 'A1.group_id' in 'on clause'"
    in your first post, you have Duplicate column name 'lang', so if you do only English default then add Lang after the upgrade?

    Write a Reply...