Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.
/ directadmin Public archive
forked from solitweb/directadmin

PHP class for communicating with DirectAdmin API

License

Notifications You must be signed in to change notification settings

sitenzo/directadmin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP class for communicating with DirectAdmin API

Latest Version Software License Build Status Total Downloads

More info on the PHP class: http://forum.directadmin.com/showthread.php?t=258

Installation

You can install this package via Composer using:

composer require solitweb/directadmin

Usage

Basic usage. Get list of users owned by reseller:

$api = new DirectAdmin;
$api->connect("domain", 2222);
$api->set_login("username", "password");
$api->set_method('GET');
$api->query("/CMD_API_SHOW_USERS");
$api->fetch_parsed_body();
print_r($api);

More sample API scripts

Credits

License

The MIT License (MIT). Please see License File for more information.

About

PHP class for communicating with DirectAdmin API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%