Note that Pantheon's recent changes to search-replace functionality for multisites should make this script unnecessary. If possible, use the platform functionality instead. You'll have a better time. This is intended as a backup if that method fails.
Pantheon Quicksilver script designed to be run when a database is cloned from live to a lower environment.
The script will update the wp_blogs
and wp_site
table to match the new environment's base url.
It will also update the respective wp_options
table for each subsite. Note a full search and replace is not done - this can hang on large networks (200+). Those can be run on a per-site basis via terminus.
-
Copy the code to your site repo at
/private/scripts
-
Run
composer install
inside the script folder to install its dependencies. -
Update your
pantheon.yml
file to include a snippet like below. This will enable the quicksilver hook.workflows: clone_database: after: - type: webphp description: Convert blog urls script: private/scripts/quicksilver-wpms-sr/multisite.php
-
Edit the
$domains
array inmultisite.php
to match your site's configuration.