Dumping and importing mysql databases to/from files is pretty quick and easy to do from the command line:
dump db to file: mysqldump -u username -p databasename > dumpfile.sql
import db from file: mysql -u username -p databasename < dumpfile.sql
Dumping and importing mysql databases to/from files is pretty quick and easy to do from the command line:
dump db to file: mysqldump -u username -p databasename > dumpfile.sql
import db from file: mysql -u username -p databasename < dumpfile.sql
Adding a wordpress blog within a cakephp app was easily done by copying the blog into the webroot directory of the app and updating the .htaccess file in the root of the app…for details see http://planetcakephp.org/aggregator/items/1370-wordpress-into-cakephp-the-right-way
Deploying a wordpress blog is pretty straight-forward…although it does required a few changes in the admin panel or directly in the database before moving the site. A pretty comprehensive list of scenarios is covered here http://codex.wordpress.org/Moving_WordPress.