Home >Backend Development >PHP Tutorial >The serv-u web account application program written in PHP is terrible. For reference, please modify and delete it yourself! This is a first draft, please read more_PHP Tutorial

The serv-u web account application program written in PHP is terrible. For reference, please modify and delete it yourself! This is a first draft, please read more_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 16:58:11798browse

//Sign.php
//The system is suitable for win2000
//power by devchina.com,http://www.2oa.net
$path="e:serv -uServUDaemon.ini";//Path of user files
$fabu="e:web";//Total web path
if($add)
{
$fp1=fopen($ path,"r+");
$str=fread($fp1, filesize($path));
$fp=fopen($path,"a");
flock($fp,3 );
$us="=".$userid;
$start=strpos($str,$us);
if($start)
{
echo "Sorry, that's The user already exists";
}else{
$start1=strpos($str,"User1");
if($start1){
$start=$start1+6;
$end=strpos($str,"|",$start);
$firstusername=substr($str,$start,$end-$start);
$start2=strpos($str,"[ USER=".$firstusername."|1]");
$usernum=count(split(" ",substr($str,$start1,$start2-$start1)));
                                                                                                                                         $usernum."=".$userid."|1|0"." ";
$userpath=$fabu.$userid;
@mkdir($userpath,0700);
$maxsize=$size*1024;
$userp="[USER=".$ userid."|1]"." ";
$userp.="Password=".$password." ";
$userp.="HomeDir=".$userpath." ";
$userp.="RelPaths=1"." ";
$userp.="DiskQuota=1|".$maxsize."|0"." ";
$userp.="MaxUsersLoginPerIP=2"." ";
$userp.="TimeOut=600"." ";
$userp.="Access1=".$userpath."|RWAMLCDP"." ";
if($start2){
$content=substr($str,$start2,strlen($str)-$start2);
$content.=$userp;
$userinfo .=$content;
fseek($fp1,$start2,SEEK_SET);
fputs($fp1,$userinfo);




http://www.bkjia.com/PHPjc/631443.html

www.bkjia.com

http: //www.bkjia.com/PHPjc/631443.htmlTechArticle? //Sign.php //The system is suitable for win2000 //power by devchina.com, http:// www.2oa.net $path=e:serv-uServUDaemon.ini;//Path of user file $fabu=e:web;//Total web path if($add) { $fp1=fop...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn