Plugin Directory

Changeset 1274270


Ignore:
Timestamp:
10/27/2015 08:35:38 PM (10 years ago)
Author:
bradt
Message:

Update readme.txt copy.

Location:
wp-migrate-db
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-migrate-db/tags/0.7.1/readme.txt

    r1216362 r1274270  
    22Contributors: bradt
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5VPMGLLK94XJC
    4 Tags: database, migrate, backup, mysql
     4Tags: migrate, migration, export, data dump, database, backup, mysql
    55Requires at least: 3.0
    6 Tested up to: 4.3
     6Tested up to: 4.4
    77Stable tag: 0.7.1
    88License: GPLv2
    99
    10 Exports your database, does a find and replace on URLs and file paths, then allows you to save it to your computer.
     10Migrates your database by running find & replace on URLs and file paths, handling serialized data, and saving an SQL file.
    1111
    1212== Description ==
     
    1414https://www.youtube.com/watch?v=m8oScnEK5y0
    1515
    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 copy their 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.
     16WP 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
     18WP 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.
    1919
    2020Example: <code>s:5:"hello"</code> becomes <code>s:11:"hello world"</code>
  • wp-migrate-db/trunk/readme.txt

    r1195659 r1274270  
    22Contributors: bradt
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5VPMGLLK94XJC
    4 Tags: database, migrate, backup, mysql
     4Tags: migrate, migration, export, data dump, database, backup, mysql
    55Requires at least: 3.0
    6 Tested up to: 4.2.2
     6Tested up to: 4.4
    77Stable tag: 0.7.1
    88License: GPLv2
    99
    10 Exports your database, does a find and replace on URLs and file paths, then allows you to save it to your computer.
     10Migrates your database by running find & replace on URLs and file paths, handling serialized data, and saving an SQL file.
    1111
    1212== Description ==
     
    1414https://www.youtube.com/watch?v=m8oScnEK5y0
    1515
    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 copy their 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.
     16WP 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
     18WP 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.
    1919
    2020Example: <code>s:5:"hello"</code> becomes <code>s:11:"hello world"</code>
Note: See TracChangeset for help on using the changeset viewer.