natasha_thomas Posted June 20, 2010 Share Posted June 20, 2010 Friends, Here is a Bulk SubDomain Creation Script: <?php ############################################################### # cPanel Subdomains Creator 1.1 ############################################################### # Visit http://www.zubrag.com/scripts/ for updates ############################################################### # # Can be used in 3 ways: # 1. just open script in browser and fill the form # 2. pass all info via url and form will not appear # Sample: cpanel_subdomains.php?cpaneluser=USER&cpanelpass=PASSWORD&domain=DOMAIN&subdomain=SUBDOMAIN # 3. list subdomains in file. In this case you must provide all the defaults below # # Note: you can omit any parameter, except "subdomain". # When omitted, default value specified below will be taken ############################################################### // cpanel user define('CPANELUSER','Username'); // cpanel password define('CPANELPASS','Password'); // name of the subdomains list file. // file format may be 1 column or 2 columns divided with semicilon ( // Example for two columns: // rootdomain1;subdomain1 // rootdomain1;subdomain2 // Example for one columns: // subdomain1 // subdomain2 define('INPUT_FILE','domains.txt'); // cPanel skin (mainly "x") // Check http://www.zubrag.com/articles/determine-cpanel-skin.php // to know it for sure define('CPANEL_SKIN','x3'); // Default domain (subdomains will be created for this domain) // Will be used if not passed via parameter and not set in subdomains file define('DOMAIN',''); /////////////// END OF INITIAL SETTINGS //////////////////////// //////////////////////////////////////////////////////////////// function getVar($name, $def = '') { if (isset($_REQUEST[$name]) && ($_REQUEST[$name] != '')) return $_REQUEST[$name]; else return $def; } $cpaneluser=getVar('cpaneluser', CPANELUSER); $cpanelpass=getVar('cpanelpass', CPANELPASS); $cpanel_skin = getVar('cpanelskin', CPANEL_SKIN); if (isset($_REQUEST["subdomain"])) { // get parameters passed via URL or form, emulate string from file $doms = array( getVar('domain', DOMAIN) . ";" . $_REQUEST["subdomain"]); if (getVar('domain', DOMAIN) == '') die("You must specify domain name"); } else { // open file with domains list $doms = @file(INPUT_FILE); if (!$doms) { // file does not exist, show input form echo " Cannot find input file with subdomains information. It is ok if you are not creating subdomains from file.<br> Tip: leave field empty to use default value you have specified in the script's code.<br> <form method='post'> Subdomain:<input name='subdomain'><br> Domain:<input name='domain'><br> cPanel User:<input name='cpaneluser'><br> cPanel Password:<input name='cpanelpass'><br> cPanel Skin:<input name='cpanelskin'><br> <input type='submit' value='Create Subdomain' style='border:1px solid black'> </form>"; die(); } } // create subdomain function subd($host,$port,$ownername,$passw,$request) { $sock = fsockopen('localhost',2082); if(!$sock) { print('Socket error'); exit(); } $authstr = "$ownername:$passw"; $pass = base64_encode($authstr); $in = "GET $request\r\n"; $in .= "HTTP/1.0\r\n"; $in .= "Host:$host\r\n"; $in .= "Authorization: Basic $pass\r\n"; $in .= "\r\n"; fputs($sock, $in); while (!feof($sock)) { $result .= fgets ($sock,128); } fclose( $sock ); return $result; } foreach($doms as $dom) { $lines = explode(';',$dom); if (count($lines) == 2) { // domain and subdomain passed $domain = trim($lines[0]); $subd = trim($lines[1]); } else { // only subdomain passed $domain = getVar('domain', DOMAIN); $subd = trim($lines[0]); } // http://[domainhere]:2082/frontend/x/subdomain/doadddomain.html?domain=[subdomain here]&rootdomain=[domain here] $request = "/frontend/$cpanel_skin/subdomain/doadddomain.html?rootdomain=$domain&domain=$subd"; $result = subd('localhost',2082,$cpaneluser,$cpanelpass,$request); $show = strip_tags($result); echo $show; } ?> When i used it and uploded a text file, domains.txt, it creates all the subdomains in the Public_html. While i want the subdomain folders to be created into their respective Addon Domains. So it should be like; Public_html ------------- Addondomain Folder ------------------------------------Subdomain Folder Else, bydefault it creates all subdomain folder in the Public_html, which i dnt want. Any thoughts on how to achieve it? Quote Link to comment https://forums.phpfreaks.com/topic/205310-bulk-subdomain-creation-script-related/ Share on other sites More sharing options...
gizmola Posted June 20, 2010 Share Posted June 20, 2010 For all intents and purposes this script is calling this cpanel script: $request = "/frontend/$cpanel_skin/subdomain/doadddomain.html?rootdomain=$domain&domain=$subd"; So it appears that doadddomain.html and it's parameters are the key to this. Cpanel does things the way Cpanel wants to, and I don't think that reorganizing the way it wants to create subdirectory structures is something you can do. You could perhaps alter the way this works, but you would probably find that something else broke. Quote Link to comment https://forums.phpfreaks.com/topic/205310-bulk-subdomain-creation-script-related/#findComment-1074570 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.