• 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
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

MySQL Update failed

It clearly says in yellow box you will have to execute query that is above manually to your mysql server, mostlikely your mysql server is not version 8.0 which is required on v3.20.x
 
After manually updating the database tables from the MyIsam table to the Innodb table,run SQL query to update the database successfully.
 
Did you host your website or how did you serve your chevereto?
Dear McAtze;

SSD Cloud VDS using server
Operation System : CentOS Linux 7.9.2009 (Core) - Plesk Obsidian v18.0.36_build1800210604.22 os_CentOS 7
MySQL : 10.2.39-MariaDB
PHP : 7.3.28-1centos.7.210430.1502

Is that enough information?
 
Dear McAtze;

SSD Cloud VDS using server
Operation System : CentOS Linux 7.9.2009 (Core) - Plesk Obsidian v18.0.36_build1800210604.22 os_CentOS 7
MySQL : 10.2.39-MariaDB
PHP : 7.3.28-1centos.7.210430.1502

Is that enough information?
Use php 7.4, since 7.3 is deperecated
 
 
I finally decided to update to 3.20 and had same problem, this helped me
This part specifically,

Run this SQL statement (in the MySQL client, phpMyAdmin, or wherever) to retrieve all the MyISAM tables in your database.
Replace value of the name_of_your_db variable with your database name.
SQL:
SET @DATABASE_NAME = 'name_of_your_db';

SELECT  CONCAT('ALTER TABLE `', table_name, '` ENGINE=InnoDB;') AS sql_statements
FROM    information_schema.tables AS tb
WHERE   table_schema = @DATABASE_NAME
AND     `ENGINE` = 'MyISAM'
AND     `TABLE_TYPE` = 'BASE TABLE'
ORDER BY table_name DESC;
Then, copy the output and run as a new SQL query.
 
Back
Top