Open sayjeyhi opened 7 years ago
I find my answer , I should use cpanel
method , with MysqlFE
Module and createdb
function.
$cpanel = new \Gufy\CpanelPhp\Cpanel([
'host' => 'http://site.com:2082', // ip or domain complete with its protocol and port {2087 :whm - 2082 : cpanel}
'username' => 'username', // username of your server, it usually root.
'auth_type' => 'password', // set 'hash' or 'password'
'password' => 'somePassword', // long hash or your user's password
]);
$accounts = $cpanel->cpanel('MysqlFE', 'createdb' , 'username' , array('db' => 'database') ); // it will returned as array
Hi ,
Excuse if my question is not so good question , but I am looking a way to create DB in cpanel with api .
Can I create DB or Email account Using Cpanel-php ? thanks