• 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 automatically on startup?

zimu

Diamond Member
Is it possible to automatically upload by using FTP a file onto a server when you start the computer?

i was thinking of using the dos ftp prompt and just building a batch file, but i can't figure out how to automatically enter username/password.

can anyone help?

thanks!
 
Originally posted by: AgaBooga
get WS_FTP and set it to auto logon

are you able to make it start up on its own though with Windows?

auto login can do one thing, but how can i automatically upload the file and quit out of the program, without ANY intervention on my part?

thanks!
 
I think you can use a script file (a file that contains ftp commands, one per line) using
ftp -s <script-file-name>
 
Originally posted by: zimu
Originally posted by: FoBoT
use wget

i need to do something similar, but on a scheduled basis, so i am going to try the windows version of wget

GNU Wget

ftp download site

more info

i took a look at this, looks like its for downloading only...

D'oh! it is wget , duh, my bad

i only need downloading for my application

hmmm, maybe there is a wsend?

i found something called Robo-FTP , but it isn't free, it has a very high rating on download.com , but after 30 day trial you have to pay $ ($40)
 
Originally posted by: zimu
Is it possible to automatically upload by using FTP a file onto a server when you start the computer?

i was thinking of using the dos ftp prompt and just building a batch file, but i can't figure out how to automatically enter username/password.

can anyone help?

thanks!

You can put a bunch of commands in a text file including your login info and have the dos ftp program run using that file.

e.g.
Create a text document with commands used when in FTP. Below is an example of what such a script may look like:

open ftp.domain.com
username
password
cd public_html
dir
get file.txt
bye
 
Back
Top