Click to See Complete Forum and Search --> : Down load path
jameswaltz49
05-26-2003, 02:54 PM
Hello everyone
I am new at this and would be greatful for some advice. I am designing a web site to sell ebooks and need to set up a download page but I dont understand what a download path is. Do I have to have a special program to allow people to download ebooks from my site? And how do you set up a down load path? I need all the help that I can get so please help me.
James:confused:
Quasibobo
05-26-2003, 05:06 PM
It's not so difficult as it seems. Every file on your website that can't be read bij the browser will be downloaded to your computer.
Usually the browser only accepts html-pages (and similar), .doc's and .txt-files. The computer will download every other file to the harddisk.....
A downloadpage is just a page with links to non-html files (.zip for example).
H.T.H.
Quasibobo
jameswaltz49
05-27-2003, 07:17 AM
I'm sorry to seem so dence but I still dont understand. I am very new at this and dont know what bij stands for. please explain in terms that a novice will explain. Please forgive my lack of knowledge. I know that most of you have been doing this for some time an know what you are doing that is why I joined this forum. Just look upon me a child in this new venture and explain it as you would to a child. Do I creat a folder on my web site to store my ebooks in and a link to that folder? Is the down load automatic or do I need anything special to make it happen?
Thank you
James
What is the name and extention of your file? That will tell whether or not it will automatically download, or if it will be displayed by the browser. Also, this is how to link to it. This is assumbing that it is in a directory named ebooks. <a href="http://www.yourdomain.com/ebooks/yourebook.pdf">http://www.yourdomain.com/ebooks/yourebook.pdf</a>
Dark Dragon
05-27-2003, 07:46 AM
Hi Jameswaltz..maybe I can help too.
I once had a site where I had some MIDI files on it..all I did was have a text link on my page, linking it to the file..so when someone clicked on the link, a pop up window comes and asks the "Save File to Disk" or "Open file from current location" thing.
At least for my own purposes I saved the MIDI files to a separate folder...just to keep things organized as I uploaded things.
Does that help any?
Nevermore
05-27-2003, 08:11 AM
Originally posted by jameswaltz49
...[I] dont know what bij stands for.
I'm pretty sure that was just a typo, and he/she meant 'by'. LOL
As has been said, any link your browser doesn't understand will be downloaded. Here's another example.
[list=1] <a href="index.htm">Index Page</a>
<a href="thing.php">PHP page</a>
<a href="pic.gif">An Image</a>
<a href="pic2.jpg">A JPG Image</a>
<a href="stuff.php">ASP Page</a>[/list=1]
All these links (in blue) would normally be opened in the browser window. To download these files a user would have to right click on them and select save as. This is because they are all web pages or images that the browser understands.
Number 1 is a standard HTML page, number 2 is a PHP page which is converted into HTML by the server, so the browser just gets HTML again. Number three is a GIF image such as might be displayed on a web page, and number 4 a jpg that you might find on a web page. Obviously the browser can display these. And the last one is an ASP page, which, once again, is converted into HTML by the server.
Here are some files that would download:
[list=1]
<a href="compressed.zip">Files</a>
<a href="prog.exe">Program</a>
<a href="splat.tar">A tarball</a>
<a href="link.dll">DLL</a>
[/list=1]
None of these (red) files would open in the browser window, because the browser dowsn't understand them. Number 1 is a compressed file. This contains many files, so cannot be viewed in one browser window. Number 2 is a program. This would run in its own window. 3 is a tarball. These are sort of like .zip files, and number 4 is a 'dynamic link library' file. This might be associated with the program, and doesn't do anything at all on its own. If you clicked a link to one of these files, it would download. Since .zip files download automatically on clicking, you can package files that open in the browser window in a zip and it will auto download.
I hope that helped answer your question. If not, just say so.
jameswaltz49
05-27-2003, 01:51 PM
hi
Thank you for all your help I think I have a better understanding about downloading. I will experiment with your sugestions. Thanks a lot
James
Workathome-mainpage.com