Another b5 bug:
i found the problem with script not being run one after another.
"site command" works correctly.
but "site commands something_here" doesn't.
like so:
site test
200-test #1 run ok
200-test #2 run ok
200 Command Successful.
site test something
200-test #1 run ok
200 Command Successful.
to replicate bug: use .bat files down there...
test1.bat:
@echo off
echo test #1 run ok
exit 0
test2.bat:
@echo off
echo test #1 run ok
exit 0
ioftpd.ini:
test = ..\scripts\test1.bat
test = ..\scripts\test2.bat
|