2

我尝试使用directAdmin Web 控制 API在我的共享虚拟主机上创建新数据库。我使用下面的代码连接到 directAdmin 并创建数据库,但是当我打开 php 脚本时,它没有登录到直接管理员并显示登录页面。

include 'httpsocket.php';

$sock = new HTTPSocket;
$sock->connect('xx.xx.xx.xx',2222);

$user = getenv('xxxxxxx');
$pass = getenv('xxxxxxx');

$sock->set_login("${user}","${pass}");

$sock->set_method('POST');

$sock->query('/CMD_API_DATABASES',
       array(
            'action' => 'create',
            'name' => "Test101",
            'user' => "dbuser",
            'passwd' => "$pass",
            'passwd2' => "$pass",
));

$result = $sock->fetch_body();

echo $result;
4

0 回答 0