A Concrete CMS package to move multiple pages at once.
$ cd ./packages
$ git clone git@github.com:MacareuxDigital/md_bulk_page_mover.git md_bulk_page_mover
$ cd ../
$ ./concrete/bin/concrete c5:package-install md_bulk_page_moverMove multiple pages at once. Run the following command-
$ ./concrete/bin/concrete md:page:move --from='/source_page_path' --to='/destination_page_path'Need to config the page path_from and to path_to in the config.
Run the following command-
$ ./concrete/bin/concrete c5:config set md_bulk_page_mover::settings.path_from '/path_from' --env=develop
$ ./concrete/bin/concrete c5:config set md_bulk_page_mover::settings.path_to '/path_to' --env=developor, upload the config file application/config/md_bulk_page_mover/settings.php to the config directory.
return [
'path_from' => '/path-from',
'path_to' => '/path-to',
];Please input the page path_from and to path_to in the task options.