83 lines
2.6 KiB
PHP
83 lines
2.6 KiB
PHP
<?php
|
|
/*
|
|
----------------------------------------------------------------------
|
|
AlternC - Web Hosting System
|
|
Copyright (C) 2000-2012 by the AlternC Development Team.
|
|
https://alternc.org/
|
|
----------------------------------------------------------------------
|
|
LICENSE
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License (GPL)
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
To read the license please visit http://www.gnu.org/copyleft/gpl.html
|
|
----------------------------------------------------------------------
|
|
*/
|
|
require_once("../class/config.php");
|
|
|
|
if (!$admin->enabled) {
|
|
__("This page is restricted to authorized staff");
|
|
exit;
|
|
}
|
|
$fields = array (
|
|
"login" => array ("post", "string", ""),
|
|
"pass" => array ("post", "string", ""),
|
|
"passconf" => array ("post", "string", ""),
|
|
"canpass" => array ("post", "integer", ""),
|
|
"notes" => array ("post", "string", ""),
|
|
"nom" => array ("post", "string", ""),
|
|
"prenom" => array ("post", "string", ""),
|
|
"nmail" => array ("post", "string", ""),
|
|
"type" => array ("post", "string", ""),
|
|
"create_dom_list" => array ("post", "string", ""),
|
|
"submit" => array ("post", "string", ""),
|
|
);
|
|
getFields($fields);
|
|
|
|
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, 0, $notes))) {
|
|
$error=$err->errstr();
|
|
include ("adm_add.php");
|
|
exit;
|
|
} else {
|
|
|
|
// Add here all what you want when an account is created !
|
|
$mem->su($u);
|
|
|
|
/*
|
|
* 1 = hébergement dns, en effet, les
|
|
* domaines *.koumbit.net ne sont pas forcément 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
|
|
*/
|
|
// FIXME: rien à faire ici. Ca devrait être dans la classe.
|
|
if (isset($create_dom) && ($create_dom == 1) && !is_null($create_dom_list)) {
|
|
// make sure we don't have multiple dots there
|
|
$dom->lock();
|
|
$dom->add_domain($login.".".preg_replace("/^\.\.*/", "", $create_dom_list),1,1,1);
|
|
$dom->unlock();
|
|
}
|
|
$ftp->add_ftp($login,"",$pass,"/");
|
|
$mem->unsu();
|
|
|
|
$error=_("The new member has been successfully created");
|
|
|
|
include("adm_list.php");
|
|
exit;
|
|
}
|
|
?>
|