"Automatic Transmit Timeout"-Inheritance

Please post here if you have problems in using Wing FTP Server.
Post Reply
qoverq
Posts: 21
Joined: Fri Oct 28, 2011 11:45 am

"Automatic Transmit Timeout"-Inheritance

Post by qoverq »

Hey!
Is it possible to inherit the value of this setting?
The Domain has the value "0" but the users get the standard value "5" on create

Many Thanks.
Greetz
FTP
Site Admin
Posts: 2072
Joined: Tue Sep 29, 2009 6:09 am

Re: "Automatic Transmit Timeout"-Inheritance

Post by FTP »

Yes, you can modify the html file "webadmin/admin_adduser_form2.html", find and replace:

Code: Select all

<input id="idle_timeout" type="text" value="5" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">
into:

Code: Select all

<input id="idle_timeout" type="text" value="0" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">
qoverq
Posts: 21
Joined: Fri Oct 28, 2011 11:45 am

Re: "Automatic Transmit Timeout"-Inheritance

Post by qoverq »

Thank you very much!
Post Reply