Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/WordPress.php
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,7 @@ protected function update_ssl( $assoc_args ) {

EE::log( 'Running search-replace.' );
EE::log( 'Taking database backup before search-replace.' );
EE::exec( sprintf( \EE_DOCKER::docker_compose_with_custom() . ' exec php wp db export %s.db', $this->site_data['site_url'] ) );
EE::exec( sprintf( \EE_DOCKER::docker_compose_with_custom() . ' exec php wp db export --skip-ssl %s.db', $this->site_data['site_url'] ) );

$db_file = $this->site_data['site_fs_path'] . '/app/htdocs/' . $this->site_data['site_url'] . '.db';
$backup_location = EE_BACKUP_DIR . '/' . $this->site_data['site_url'] . '/' . $this->site_data['site_url'] . '.db';
Expand Down
Loading