Page 1 of 1

MySQL said: Storage engine MyISAM is disabled (Table creation is disallowed).

Posted: Tue Jul 05, 2022 4:31 am
by danielscarvalho
I get this message at setup...

MySQL said: Storage engine MyISAM is disabled (Table creation is disallowed).

The fact is that the company just allow InnoDB engine. Is there a fix for it?!

Re: MySQL said: Storage engine MyISAM is disabled (Table creation is disallowed).

Posted: Tue Jul 05, 2022 5:57 am
by Klemen
The correct fix is to change your hosting company :D

An alternative fix would be to change all instances of

Code: Select all

ENGINE=MyISAM
to

Code: Select all

ENGINE=InnoDB
in the install/install.php file. You will need MySQL > 5.6.4 so that InnoDB supports fulltext searches.