Editing Transfer user accounts from Another FTP Server

From FileZilla Wiki
Jump to navigationJump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 47: Line 47:
 
   
 
   
 
  open FICHIER,"< users.ini" or die "File can t be read !";
 
  open FICHIER,"< users.ini" or die "File can t be read !";
+
 
$motiflogin = 'Login=';
+
$motiflogin = 'Login=';
$motifpass = 'Pass=';
+
$motifpass = 'Pass=';
$motifdir='Dir';
+
$motifdir='Dir';
$motifattr='Attr';
+
$motifattr='Attr';
+
 
$debut='<FileZillaServer>
+
$debut='<FileZillaServer>
<Settings>
+
<Settings>
<Item name="Admin port" type="numeric">14147</Item>
+
<Item name="Admin port" type="numeric">14147</Item>
</Settings>
+
</Settings>
<Groups/>
+
<Groups/>
<Users>
+
<Users>
';
+
';
+
 
+
 
$paramdivers = '<Option Name="Group"></Option>
+
$paramdivers = '<Option Name="Group"></Option>
<Option Name="Bypass server userlimit">0</Option>
+
<Option Name="Bypass server userlimit">0</Option>
<Option Name="User Limit">0</Option>
+
<Option Name="User Limit">0</Option>
<Option Name="IP Limit">0</Option>
+
<Option Name="IP Limit">0</Option>
<Option Name="Enabled">1</Option>
+
<Option Name="Enabled">1</Option>
<Option Name="Comments"></Option>
+
<Option Name="Comments"></Option>
<Option Name="ForceSsl">0</Option>
+
<Option Name="ForceSsl">0</Option>
<IpFilter>
+
<IpFilter>
<Disallowed />
+
<Disallowed />
<Allowed />
+
<Allowed />
</IpFilter>
+
</IpFilter>
<Permissions>';
+
<Permissions>';
+
 
+
 
$userfin= '</Permissions>
+
$userfin= '</Permissions>
<SpeedLimits DlType="0" DlLimit="10" ServerDlLimitBypass="0" UlType="0" UlLimit="10"   ServerUlLimitBypass="0">
+
<SpeedLimits DlType="0" DlLimit="10" ServerDlLimitBypass="0" UlType="0" UlLimit="10" ServerUlLimitBypass="0">
<Download />
+
<Download />
<Upload />
+
<Upload />
</SpeedLimits>
+
</SpeedLimits>
</User>';
+
</User>';
+
 
$fin = '</Users>
+
$fin = '</Users>
</FileZillaServer>';
+
</FileZillaServer>';
+
 
$i=0;
+
$i=0;
$fz=$debut;
+
$fz=$debut;
while ($ligne = <FICHIER>){
+
while ($ligne = <FICHIER>){
+
 
if ($ligne =~ /^$motiflogin[\.\w-]*/i) {
+
if ($ligne =~ /^$motiflogin[\.\w-]*/i) {
@tab=split(/=/,$&);
+
@tab=split(/=/,$&);
$fz.= "<User Name=\"".$tab[1]."\">\n";
+
$fz.= "<User Name=\"".$tab[1]."\">\n";
$i++;
+
$i++;
$h=1;
+
$h=1;
}
+
}
elsif ($ligne =~ /^$motifpass[\w-]*/i) {
+
elsif ($ligne =~ /^$motifpass[\w-]*/i) {
@tab=split(/=/,$&);
+
@tab=split(/=/,$&);
$fz.= "<Option Name=\"Pass\">".md5_hex($tab[1])."</Option>\n";
+
$fz.= "<Option Name=\"Pass\">".md5_hex($tab[1])."</Option>\n";
$fz.= $paramdivers."\n";
+
$fz.= $paramdivers."\n";
}
+
}
elsif ($ligne =~ /^$motifdir[\w\ \.\\:=]*/i) {
+
elsif ($ligne =~ /^$motifdir[\w\ \.\\:=]*/i) {
@tab=split(/=/,$&);
+
@tab=split(/=/,$&);
$fz.= "<Permission Dir=\"".$tab[1]."\">\n";
+
$fz.= "<Permission Dir=\"".$tab[1]."\">\n";
}
+
}
elsif ($ligne =~ /^$motifattr[-\w=]*/i) {
+
elsif ($ligne =~ /^$motifattr[-\w=]*/i) {
@tab=split(/=/,$&);
+
@tab=split(/=/,$&);
@perm=split(//,$tab[1]);
+
@perm=split(//,$tab[1]);
$fz.= copyrights(@perm);
+
$fz.= copyrights(@perm);
$fz.= '<Option Name="IsHome">'.$h.'</Option>'."\n";
+
$fz.= '<Option Name="IsHome">'.$h.'</Option>'."\n";
$fz.= '<Option Name="AutoCreate">0</Option>'."\n".'</Permission>'."\n";
+
$fz.= '<Option Name="AutoCreate">0</Option>'."\n".'</Permission>'."\n";
$h=0;
+
$h=0;
}
+
}
elsif ($ligne =~ /^\n/i) {
+
elsif ($ligne =~ /^\n/i) {
$fz.= $userfin."\n";
+
$fz.= $userfin."\n";
}
+
}
}  
+
}
$fz.= $userfin."\n";
+
$fz.= $userfin."\n";
$fz.= $fin;
+
$fz.= $fin;
close FICHIER;
+
close FICHIER;
 
    
 
    
 
  open WRITER,"> FileZilla Server.xml" or die "File can't be written !\n";
 
  open WRITER,"> FileZilla Server.xml" or die "File can't be written !\n";

Please note that all contributions to FileZilla Wiki are considered to be released under the GNU Free Documentation License 1.2 (see FileZilla Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)