enabled) { __("This page is restricted to authorized staff"); exit; } if ($pass != $passconf) { $error = _("Passwords do not match"); include("adm_add.php"); exit(); } if (!($u=$admin->add_mem($login, $pass, $nom, $prenom, $nmail, $canpass, $type))) { $error=$err->errstr(); include ("adm_add.php"); exit; } else { // Add here all what you want when an account is created ! $mem->su($u); /* * 0 = pas d'hébergement dns, en effet, pas besoin vu que les * domaines *.koumbit.net sont bien sur le serveur * * 1 = noerase = empêche à l'utilisateur de modifier le dns ou de * supprimer le domaine * * 1 = force = ne tient pas compte du whois ou des droits de tld */ if ($create_dom) { if (variable_get("hosting_tld")) { # make sure we don't have multiple dots there $dom->lock(); $dom->add_domain($login.".".preg_replace("/^\.\.*/", "", variable_get("hosting_tld")),0,1,1); $dom->unlock(); } else { $err->log("no 'hosting_tld' variable defined in `variables` table, not creating domain"); } } $ftp->add_ftp($login,"",$pass,"/"); $mem->unsu(); $error=_("The new member has been successfully created"); include("adm_list.php"); exit; } ?>