Below is an example snippet from a sql dump file. This specific row contains a meta_value of a WordPress PHP serialized array. During database restores in dev., test., and qc. environments I’m using sed to replace URLs with the respective environment sub-domain.
INSERT INTO `wp_postmeta`
(`meta_id`,
`post_id`,
`meta_key`,
`meta_value`)
VALUES
(527,
1951,
'ut_parallax_image',
'a:4:{
s:17:"background-image";
s:33:"http://example.com/background.jpg";
s:23:"mobile-background-image";
s:37:"www.example.com/mobile-background.jpg";
}')
;
However, I need to extend this to correct the string length in the serialized arrays after replace.
sed -r -e "s/://(www.)?${domain}/://1${1}.${domain}/g" "/vagrant/repositories/apache/$domain/_sql/$(basename "$file")" > "/vagrant/repositories/apache/$domain/_sql/$1.$(basename "$file")"
The result should look like this for dev.:
INSERT INTO `wp_postmeta`
(`meta_id`,
`post_id`,
`meta_key`,
`meta_value`)
VALUES
(527,
1951,
'ut_parallax_image',
'a:4:{
s:17:"background-image";
s:37:"http://dev.example.com/background.jpg";
s:23:"mobile-background-image";
s:41:"www.dev.example.com/mobile-background.jpg";
}')
;
I’d prefer to not introduce any dependancies other than sed.
Thanks @John1024. @Fabio and @Seth, I not sure for perfomance, but these code work and without wp-cli:
PHP serialized string exploded by ‘;s:’ to multiline string and awk processed all lines by @John1024 solution.
Redirect output to awk
After all lines processed, multiline implode to one line (as then exists in original dump.sql). Thanks @Zsolt https://stackoverflow.com/a/1252191
Addition sed replacement need for any other strings in wordpress database.
And load into main server DB
Your algorithm involves arithmetic. That makes
sed
a poor choice. Considerawk
instead.Consider this input file:
I believe that this does what you want:
WP-CLI handles serialized PHP arrays during a search-replace http://wp-cli.org/commands/search-replace/. I wanted to try a native shell solution, but having WP-CLI was worth the extra overhead in the end.
Here is a sample text file you asked for (it’s a database export).
Original (https://www.example.com) :
Result needed (http://example.localhost) :
As you can see :
Thanks in advance !
@Alexander Demidov’s answer is great, here’s our implementation for reference