Hi, I have to daily move 100s of files from my local desktop to my webserver. I normally do it manually by opening up the FTP in the browser. Is there a way I can automate this stuff, all the files to be uploaded are there in a single folder with .xml extension. Upload can be either thru HTTP or FTP anthing is fine as long as it saves me from the effort of doing the task manually. Regards, UrStop
Hey. I can write you a small Java program to automate this process. It shouldn't take much work so it wont cost too much. PM me if your interested. Thanks
There are a few alternatives, you can use the curl library and create a little php script, executing it with a cron. Here there is an example of a curl FTP upload script, in this case the files are selected with a form, but you can change it easily and set the path to your local files: http://www.web-development-blog.com/archives/tutorial-ftp-upload-via-curl/ Good luck
Depends if you're running Windows or Linux. Both are relatively easy with the software included with the OS. Simpliest way in windows is probably with a scheduled task running a vbscript or jscript (using the cscript.exe executable). FTP in Linux is easy too and can be scheduled with cron. Let us know the OS and we can give more specific advice. Richard
Thanks HomeContrast , mine is a windows OS, so I took your advice and did some search on google and found a vbscript to do the task.