Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

It is strongly recommended that you follow the Migration Guide to start and complete your import using this plugin.


Info
titleImport via CLI

To import via cli navigate to the root directory of your Blesta installation and execute the following command

Code Block
php index.php admin/plugin/import_manager/admin_manage_plugin/index



Info
titleImport via CLI Scripted

To import via cli navigate to the root directory of your Blesta installation and execute the following command to script the import using WHMCS v8+

Code Block
php index.php admin/plugin/import_manager/admin_manage_plugin/index --type whmcs --version 8.0 --host DBHOST --database DBNAME --user DBUSER --pass DBPASS --key CCENCRYPTIONHASH --balance_credit y --enable_debug y

Replace

  • DBHOST with your database hostname
  • DBNAME with your database name
  • DBUSER with your database user
  • DBPASS with your database pass
  • CCENCRYPTIONHASH with your CC Encryption Hash
  • If you don't want to balance credits (recommended), change to 'n'.
  • If you don't want to enable debug, change to 'n'

Use the -h switch to show all options: php index.php admin/plugin/import_manager/admin_manage_plugin/index -h

Cleaning Up

After the import has completed successfully, you may safely uninstall the Import Manage plugin by clicking the "Uninstall" button for the plugin under [Settings] > [Company] > [Plugins] > Installed.

...