I have the same problem with the upload not working properly, after playing around with the ftp.mrc file I got it to work (might not be the most efficient way, but it works). Still throws some errors at the end after the file is uploaded but it gets nicks.php from point A to point B and thats all that really matters to me. Can't guarantee it will work, but it worked for me
-- Open ftp.mrc and find:
Code:
on *:SOCKREAD:FTPsock*:{
-- Right after that add:
-- Find (also in ftp.mrc):
Code:
if ($1 != 220) {
ftp.error $sockname $2-
return
}
-- Replace it with:
Code:
if ($1 != 220) {
goto retry
}
-- Find (also in ftp.mrc):
Code:
if ($1 != 331) {
ftp.error $sockname $2-
return
}
-- Replace it with:
Code:
if ($1 != 331) {
goto retry
}
-- Find (also in ftp.mrc):
Code:
if ($1 != 230) {
ftp.error $sockname $2-
return
}
-- Replace it with:
Code:
if ($1 != 230) {
goto retry
}