How do I turn passive off when doing a comparison between a local directory and server using FTP?
What would the line look like?
ftp://foooo:foofighters.fooftp.com//dev.foobar.org/
Please provide a sample of either how this line would be changed, or of any changes elsewhere.
Thanks,
Cy
Turning off passive
Re: Turning off passive
You should be able to achieve this by adding --no-passive-ftp option to wget command option in this file: C:\Program Files\ExamDiff Pro\Plug-Ins\wget\wget-1.10.2b\wget.js
psguru
PrestoSoft
PrestoSoft
Re: Turning off passive
Could you please supply an example?
Dang, another delay.
Dang, another delay.
Re: Turning off passive
1. Open C:\Program Files\ExamDiff Pro\Plug-Ins\wget\wget-1.10.2b\wget.js file in your favorite editor (Notepad will do).
2. Replace
with
3. Save the file, close the editor.
4. Run EDPro.
2. Replace
Code: Select all
cmdLine = "\"" + WScript.Arguments(0) + "\"" + " -r -nH --cut-dirs=" + nSlashes + " -P " +
WScript.Arguments(2) + " " + WScript.Arguments(1);
Code: Select all
cmdLine = "\"" + WScript.Arguments(0) + "\"" + " -r -nH --no-passive-ftp --cut-dirs=" + nSlashes + " -P " +
WScript.Arguments(2) + " " + WScript.Arguments(1);
4. Run EDPro.
psguru
PrestoSoft
PrestoSoft