Skip to content

Instantly share code, notes, and snippets.

@anovob
anovob / create_cpanel_subdomain.php
Last active May 31, 2018 15:22
Subdomain Create in Cpanel with php
function create_subdomain($subDomain,$cPanelUser,$cPanelPass,$rootDomain) {
$buildRequest = "/frontend/paper_lantern/subdomain/doadddomain.html?domain=" . $subDomain . "rootdomain=" . $rootDomain . "&dir=public_html/subdomains/" . $subDomain;
$openSocket = fsockopen('localhost',2083);
if(!$openSocket) {
return "Socket error";
exit();
}