mgufrone / cpanel-php

CPanel/WHM API for PHP
MIT License
158 stars 91 forks source link

how to create DB or Email account Using Cpanel-php ? #22

Open sayjeyhi opened 7 years ago

sayjeyhi commented 7 years ago

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

sayjeyhi commented 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