background / issue:
I am working on a content management system, and it's almost ready to go, but the publish wont work
digging around, I've found out that they are using a command line file per file upload with sftp to the host machine, and apparently the command is this:
Code:
/usr/bin/sftp -b /var/www/html/tmp/uplPRCybF admin@192.168.0.5 -pw password
I tried on both of my linux machines (centOS 4 and 5) and neither of them like that...it just spits out the little help for sftp
I figured it might be an older version of sftp, read the man files hoping I can find something, nothing that is useful with me
tried re-arranging the command structure, nothing
the farthest I got is this:
Code:
sftp -oPort=21 -b fonts.html admin:password@192.168.0.5
and it just hangs there...
I am confused, I need a simple ftp upload tool that respects a structure like this, if possible
Code:
ftp -port -file_local_path -file_target_path user:password@ip
I can't find anything, it's late, and I've been banging my head against the table all night trying to figure this out
if anyone has any suggestions or can point me in the right direction, I'd really appreciate it
thanks guys and gals