如何在cpanel api的帮助下在cpanel中创建目录

问题描述 投票:0回答:1

我得到了类对象代码,它有助于在cpanel中创建目录,但代码需要一个库或一个类。 name是cpanel.php我需要这个库或类,任何人都可以帮助我吗?

我只想在cpanel api的帮助下在cpanel中创建目录或上传文件。

这是cpanel api的url,它有助于检查创建directory code

(LiveAPI PHP类)在此先感谢,更多的帮助将是非常可观的!

php cpanel
1个回答
0
投票

您需要按照以下步骤使用cpanel API制作dir

    require_once '../components/xmlapi.php';

    $xmlapi = new \xmlapi($cpanel_domain);

    $xmlapi->password_auth($username,$password);

    $xmlapi->set_port(2083);

    $result = $xmlapi->api1_query($password, 'CustInfo', 'getemail', array());   

    if(isset($result->error) && $result->error!=""){
        // error log here
    }

    $api2args = array(
        'path'=> 'public_html',
        'name' => $newdir_name, 
        'permission' => '0755',                     
    );                          
    $result = $xmlapi->api2_query($cpanel_username, 'Fileman', 'mkdir', $api2args);

你可以从这里下载xmlapi所需的文件: - https://github.com/CpanelInc/xmlapi-php在这里也是在开发者资源部分下给出的。 https://documentation.cpanel.net/display/SDK/Software+Development+Kit+Home

© www.soinside.com 2019 - 2024. All rights reserved.