Forum Moderators: open
i found this site which offers mirror for such unfortunate instance
http://www.example.com/ftp.html
my question is:
where it says
"or now via http:
http://ftp.example.com/ftp/pub/freeware"
this thing works... but how? is it getting the file from FTP or HTTP? what's that "http://ftp..." thing?
[edited by: tedster at 9:57 pm (utc) on June 29, 2006]
[edit reason] use example.com, not actual address [/edit]
The important part is on the left, the "http://" - this tells the browser which protocol to use to retrieve the file. "ftp.example.com" is just the name of the server. It could just as easily be "http://telegram.example.com", but it still won't come via the wire :)
Chad
[edited by: tedster at 9:57 pm (utc) on June 29, 2006]
The word "server" can be used to mean either the software (the server application) or the hardware (the physical computer). The files that are to be transferred only need to exist one time on the hardware and they can be accessed via any protocol that is supported by the server applications that are installed on that physical box.
You can place a link to the exact address for the dowload file right on an html page. Then, for example, if the file uses a .exe extension, the browser will ask the user whether to open the file or save it -- and you can give your users the exact instructions that make the most sensein your situation, right there on your html page.
"The Subdomain Manager allows you to manage up to 5 subdomains for domainname.com. These subdomains can be pointed to your /home/domainname/public_html directory or a subdirectory on the same server."
so if my file sits in "public_ftp" directory (which is obviously parallel to "public_html", I can't really access that file through http protocol can I?
I keep the "testfile.sitx" in the FTP directory, from the root directory it's in:
public_ftp/downloads/testfile.sitx
I pointed the url in the browser to:
http://www.example.com/public_ftp/downloads/testfile.sitx (this is a madeup url so it points to some wacky place)
i can imageine why it did not work, www.example.com/... heads straight to the "public_http" folder and "public_ftp" is not its subdirectory, it's on the same level.
any way to make this work?
[edited by: tedster at 1:48 am (utc) on July 1, 2006]
[edit reason] use example.com [/edit]