• 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

Replace the server, sync MySql error!

Status
Not open for further replies.
This is a server issue, not script issue. The system detects which engine must be used by doing this:
PHP:
version_compare($db->getAttr(\PDO::ATTR_SERVER_VERSION), '5.6', '<') ? 'MyISAM' : 'InnoDB';
The query is using innodb because the system is reading that the installed mysql version is >= 5.6 and if you get that message (fulltext support) is because you have an issue there. Either the server is returning a wrong version or you have another problem there because from 5.6 innodb supports fulltext.

I'm sorry, but you will have to ask your server administrator or hosting company.

Cheers,
Rodolfo.
 
Last edited:
Status
Not open for further replies.
Back
Top