• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

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