=== OP Archive === Contributors: dtest Donate link: http://orange-pants.com/ Tags: backup Requires at least: 2.8 Tested up to: 3.0.5 Stable tag: 0.0.2 Archive wordpress files and database tables. == Description == Plugin to generate a .sql file of your wordpress database tables and make a tarball out of your wordpress sitefiles and .sql file. == Installation == 1. Upload `op_archive` compressed file to the `/wp-content/uploads` directory 2. Unpack the `op_archive` file. 3. Activate the plugin through the 'Plugins' menu in WordPress 4. OP Archive panel located under tools menu == Frequently Asked Questions == = What tables are included in the .sql file? = For now, OP-Archive only dumps tables that begin with the wordpress prefix, as defined by `$wpdb->prefix`. There are plans to allow the dump of any tables inside your wordpress database. = How is the .sql file generated? = Currently, the file is generated by looping through the rows in each `$wpdb->prefix` table. The file will create appropriate `DROP TABLE` and `CREATE TABLE` blocks. There is a plan to be able to use the 'mysqldump' command if available on your system. = What format is the compressed file? = OP Archive currently only creates a '.tar.gz' file. There are plans to be able to choose your flavor of compressed file. == Screenshots == == Changelog == = 0.0.2 = * BUG FIX: sql generated is now properly escaped = 0.0.1 = * Created plugin structure. * Created basic admin panel. * Implemented basic local archive directory under '/wp-content/plugins/op_archive/archives/' directory * Implemented tarball compression of the current wordpress directory and move of tarball to archive directory. == Upgrade Notice == = 0.0.2 = Version 0.0.2 fixes a bug in how the sql file was generated. It now properly escapes quotations and newlines.