wajdihab Posted November 10, 2016 Posted November 10, 2016 Hi, I wanted to import a database (.sql) with phpMyAdmin but i've got this error : InnoDB is in read only mode.Please help me to fix this issue.Thanks. Quote
wolstech Posted November 10, 2016 Posted November 10, 2016 You can convert the database to MyISAM as follows. This will also fix the #1874 (InnoDB read only) error:Make a copy of the .sql file you want to import.Search the copy of the .sql file for Engine=InnoDB and replace all instances with Engine=MyISAMCreate a new database.Import the edited copy of the .sql into the database using PhpMyAdmin to restore the content.We don't recommend using InnoDB on Stevie since the data gets lost or the server goes read-only quite regularly due to crashes. 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.