Changeset 1274270
- Timestamp:
- 10/27/2015 08:35:38 PM (10 years ago)
- Location:
- wp-migrate-db
- Files:
-
- 2 edited
-
tags/0.7.1/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-migrate-db/tags/0.7.1/readme.txt
r1216362 r1274270 2 2 Contributors: bradt 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5VPMGLLK94XJC 4 Tags: database, migrate, backup, mysql4 Tags: migrate, migration, export, data dump, database, backup, mysql 5 5 Requires at least: 3.0 6 Tested up to: 4. 36 Tested up to: 4.4 7 7 Stable tag: 0.7.1 8 8 License: GPLv2 9 9 10 Exports your database, does a find and replace on URLs and file paths, then allows you to save it to your computer.10 Migrates your database by running find & replace on URLs and file paths, handling serialized data, and saving an SQL file. 11 11 12 12 == Description == … … 14 14 https://www.youtube.com/watch?v=m8oScnEK5y0 15 15 16 WP Migrate DB exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer. It is perfect for developers who need to update their local install with fresh data from the production site, or copytheir locally developed site to a staging or production server.17 18 It even takes into account serialized data (both arrays and objects) and updates the string length values.16 WP Migrate DB exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, handles serialized data, then allows you to save it to your computer as an SQL file. To complete the migration, you need to use a database management tool (e.g. phpMyAdmin) to import the SQL file to your database, replacing your existing database. It is perfect for developers who need to migrate fresh data from the production site to their local install, or migrate their locally developed site to a staging or production server. 17 18 WP Migrate DB handles serialized data (both arrays and objects) by unserializing the data and going through it, identifying strings and running a find & replace on them. Once it has gone through all the data, it serializes it again and sticks it back in the database. 19 19 20 20 Example: <code>s:5:"hello"</code> becomes <code>s:11:"hello world"</code> -
wp-migrate-db/trunk/readme.txt
r1195659 r1274270 2 2 Contributors: bradt 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5VPMGLLK94XJC 4 Tags: database, migrate, backup, mysql4 Tags: migrate, migration, export, data dump, database, backup, mysql 5 5 Requires at least: 3.0 6 Tested up to: 4. 2.26 Tested up to: 4.4 7 7 Stable tag: 0.7.1 8 8 License: GPLv2 9 9 10 Exports your database, does a find and replace on URLs and file paths, then allows you to save it to your computer.10 Migrates your database by running find & replace on URLs and file paths, handling serialized data, and saving an SQL file. 11 11 12 12 == Description == … … 14 14 https://www.youtube.com/watch?v=m8oScnEK5y0 15 15 16 WP Migrate DB exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer. It is perfect for developers who need to update their local install with fresh data from the production site, or copytheir locally developed site to a staging or production server.17 18 It even takes into account serialized data (both arrays and objects) and updates the string length values.16 WP Migrate DB exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, handles serialized data, then allows you to save it to your computer as an SQL file. To complete the migration, you need to use a database management tool (e.g. phpMyAdmin) to import the SQL file to your database, replacing your existing database. It is perfect for developers who need to migrate fresh data from the production site to their local install, or migrate their locally developed site to a staging or production server. 17 18 WP Migrate DB handles serialized data (both arrays and objects) by unserializing the data and going through it, identifying strings and running a find & replace on them. Once it has gone through all the data, it serializes it again and sticks it back in the database. 19 19 20 20 Example: <code>s:5:"hello"</code> becomes <code>s:11:"hello world"</code>
Note: See TracChangeset
for help on using the changeset viewer.