Numerous issue, headaches and concerns...
Is there a way to back up everything and start all over again? I would like to keep all the discussions and users and begin again with all new extensions.
I'm getting more and more errors and fixing one just makes the other worse.
I'm getting more and more errors and fixing one just makes the other worse.
0
This discussion has been closed.
Comments
mysqldump -u your_mysql_username -p -h your.mysql.host your_vanilla_db_name > vanilla.sql
and then this to restore:
mysql -u your_mysql_username -p -h your.mysql.host your_vanilla_db_name < vanilla.sql