• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

Update from 3.2.1 to 3.6.3

Status
Not open for further replies.

Dan Pavelescu

Chevereto Member
I just upgrade to last version of Chevereto, and i can't modify anything from settings.
Also, in the dashboard i have this message:

Chevereto version3.6.3 (3.2.1 DB) update – check for updates

If i press update, i get this message:
Update complete
Chevereto has been successfully updated to 3.6.3. You can now continue to the admin dashboard and configure your website.
But nothing happens..
If i change something in settings, i have a short message who say:
Changes have been saved
But nothing is saved.

Please, i really need your help.

Thank you!
 
Problem solved.

Seems like in the update process something gone wrong, because MySQL table "chv_settings" was not updated.
I've installed a clean Chevereto, then i compared the two tables.

Clean table (marked Y) has setting_id from 1 to 147, and the old table (marked X) has from 1 to 63.

I've run this commands in mysql:

ALTER TABLE `chv_settings` CHANGE COLUMN `setting_name` `setting_name` VARCHAR(255) NULL DEFAULT NULL ;
then
insert into X.chv_settings(setting_name,setting_value,setting_default,setting_typeset) select setting_name,setting_value,setting_default,setting_typeset from Y.chv_settings where setting_name not in (select setting_name from X.chv_settings);

Thats is all. Thank you, this thread can be closed.
 
Status
Not open for further replies.
Back
Top