Reactivate a mysql server if it has gone offline.
Add a new mysql server to the pool.
Sets the default mysql server to use for new SiteWorx accounts and resellers.
List active MySQL servers.
array ( 'status' => 0, 'payload' => array ( 0 => 'localhost', ), )
List deletable MySQL servers.
array ( 'status' => 0, 'payload' => array ( ), )
List inactive MySQL servers.
Lists the available mysql servers.
array ( 'status' => 0, 'payload' => array ( 0 => array ( 'server_id' => '1', 'nickname' => 'localhost', 'can_delete' => false, 'version' => '5.0.95', 'host' => '208.69.122.234', 'is_running' => true, 'can_connect' => true, 'is_local' => true, ), ), )
Change a mysql server's nickname.
Change the given MySQL Server's root password.
Controller: MysqlRemote
Action: activate (Added in version 4.8.0-393)
Reactivate a mysql server if it has gone offline.
Input Parameters
Select the database server from the list that you would like to use.
localhost
The root username of the MySQL Server. Note: this is *not* the system root username.
The root password of the MySQL Server. Note: this is *not* the system root password.
Action: add (Added in version 4.8.0-393)
Add a new mysql server to the pool.
Input Parameters
Enter the host or IP address (with port if needed) of the database server.
The root username of the MySQL Server. Note: this is *not* the system root username.
The root password of the MySQL Server. Note: this is *not* the system root password.
Action: default (Added in version 4.8.0-393)
Sets the default mysql server to use for new SiteWorx accounts and resellers.
Action: listActiveServers (Added in version 4.8.0-393)
List active MySQL servers.
Example Output
array ( 'status' => 0, 'payload' => array ( 0 => 'localhost', ), )Action: listDeletableServers (Added in version 4.8.0-393)
List deletable MySQL servers.
Example Output
Action: listInactiveServers (Added in version 4.8.0-393)
List inactive MySQL servers.
Example Output
Action: listServers (Added in version 4.8.0-393)
Lists the available mysql servers.
Example Output
array ( 'status' => 0, 'payload' => array ( 0 => array ( 'server_id' => '1', 'nickname' => 'localhost', 'can_delete' => false, 'version' => '5.0.95', 'host' => '208.69.122.234', 'is_running' => true, 'can_connect' => true, 'is_local' => true, ), ), )Action: nickname (Added in version 4.8.0-393)
Change a mysql server's nickname.
Input Parameters
Select the database server from the list that you would like to use.
localhost
Action: rootpass (Added in version 4.8.0-393)
Change the given MySQL Server's root password.
Input Parameters
Select the database server from the list that you would like to use.
localhost
Confirm the password field by providing it again. Must match the password provided.