comment the mkdir process

This commit is contained in:
wlx 2013-06-09 03:59:33 +00:00
parent 0ce5031ff6
commit c93a382588
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class Pureftp
$sql="insert into pureftp (userid,passwd,homedir) values('".$user->username."','".$user->password."','".'/home/ftp/'.$user->username."')"; $sql="insert into pureftp (userid,passwd,homedir) values('".$user->username."','".$user->password."','".'/home/ftp/'.$user->username."')";
$this->db->query($sql); $this->db->query($sql);
//create user home dir //create user home dir
mkdir('/home/ftp/'.$user->username); //mkdir('/home/ftp/'.$user->username);
} }
} }