topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 5:31 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: IDEA: HTTP to FTP downloader  (Read 17583 times)

alien

  • Participant
  • Joined in 2005
  • *
  • Posts: 13
    • View Profile
    • CYB3RZ3N
    • Donate to Member
IDEA: HTTP to FTP downloader
« on: April 30, 2005, 02:47 PM »
I mean something like FXP client, but intended for file transfer from web to FTP server (AFAIK it'll have to emulate FTP server requests). GUI not really matters =)
Thanks in advance! 
« Last Edit: May 01, 2005, 01:51 PM by mouser »

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #1 on: May 01, 2005, 07:41 AM »
this sounds a bit involved for a snack.
one could use some components to make pretty quickly a program that downloaded a specific single file from a web site and then ftp'd it to an ftp account, when launched..  but im not sure if that would be useful.  maybe you could tell us a bit more about how you would want to use it, and more details..

alien

  • Participant
  • Joined in 2005
  • *
  • Posts: 13
    • View Profile
    • CYB3RZ3N
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #2 on: May 01, 2005, 01:21 PM »
one could use some components to make pretty quickly a program that downloaded a specific single file from a web site and then ftp'd it to an ftp account, when launched.. but im not sure if that would be useful. maybe you could tell us a bit more about how you would want to use it, and more details..

No, that sort of thing i could script myself...
I need some kind of *request proxy* that will download files directly to specified ftp server
it will have to send a GET HTTP request and emulate FTP server requests to download files to server
I need this kind of client to d/l some big temporary files to my remote hosting, cause i don't have broadband and shell access to host

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #3 on: May 01, 2005, 01:50 PM »
sounds interesting and if you find something id like to know about it; im gonna mark this with a thumb now though since i think its outside snackability range.

jallport

  • Participant
  • Joined in 2005
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #4 on: April 05, 2006, 02:23 AM »
I think you're describing wget.  Available in most linux distros and as a win32 binary, I am prety sure it will handle ftp PUTs aswell as http GETs.

emm

  • Supporting Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 1
    • View Profile
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #5 on: January 16, 2007, 12:19 AM »
Very late reply but... do you mean a program that will fetch files from an http to your webspace without going through your pc (and bandwidth) first?  Because my brother made me one of those.

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #6 on: January 16, 2007, 12:40 AM »
emm, yes that's exactly the idea.

kmarius

  • Participant
  • Joined in 2006
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #7 on: May 09, 2007, 11:18 AM »

I need this kind of client to d/l some big temporary files to my remote hosting, cause i don't have broadband and shell access to host

-alien

When you say "remote hosting", you are talking about a standard web host?

Perhaps it could be solved completely on the web server side. You could just have a script on the web server that downloads a file from the web and saves it directly on the server.

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #8 on: May 09, 2007, 11:39 AM »
Perhaps it could be solved completely on the web server side. You could just have a script on the web server that downloads a file from the web and saves it directly on the server.

exactly, the idea is a combination of a script on the server, listening for instructions, and a browser plugin maybe, that would let you right click on a link and instruct your server script to download the chosen file.

allen

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 1,206
    • View Profile
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #9 on: May 09, 2007, 12:14 PM »
The problem is, without any sort of shell access, how do you get the server to perform the operation in the background?  Most server side scripting configurations are set to automatically time out after only a few minutes execution time -- and snagging big files would almost certainly time out.

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: IDEA: HTTP to FTP downloader
« Reply #10 on: May 09, 2007, 12:37 PM »
yes this is something you need to have the server running a kind of daemon, which would require shell access.