• 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.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

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