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.
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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now