Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Transferring Vanilla to a new database
My host will only let me create SQL databases that hold a maximum of 100 MB of info. I know this will hold me over for a long time, but is there a process to transfer everything to a new database down the road with a larger capacity if I need to?
0
This discussion has been closed.
Comments
#mysqldump -u username -p databasename > databasename-dump.sql
and then
#mysql -u username -p emptybutexistingdatabase < databasename-dump.sql