• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

FTP data transfer question

TiziteLayinLow

Senior member
i have a ftp server running and when i try to access it from DOS or linux console.. it connects with user/pw and then i do .. "put".. it asks for local file ( i give full path ).. and then it asks for remote path.. and i just put "test.php" to store it in the current directory.. and it tries to send and it then says ..

"425 Cannot open data connection"

I have tried in ascii and binary with no luck.. any suggestions?

thanks
 
Sounds like a passive/active problem, FTP is an ancient protocol that wasn't written with firewalls in mind.
Under Linux regular CLI ftp, just type "passive" and it should say something like:
sunner@litovel:~$ ftp
ftp> passive
Passive mode on.
ftp>
 
Back
Top