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:
Support response
Support checklist
Did you host your website or how did you serve your chevereto?Could you please explain in detail.
Dear McAtze;Did you host your website or how did you serve your chevereto?
Use php 7.4, since 7.3 is deperecatedDear 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?
This could be updated to 10.3/4/5MySQL : 10.2.39-MariaDB
As @JakeSully said, min php7.4PHP : 7.3.28-1centos.7.210430.1502
If you use Plesk, then you can use PhpMyAdmin to execute these queries.Plesk Obsidian v18.0.36
name_of_your_db
variable with your database name.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;