PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I am a newbie to php and I was trying out file download feature but I am running into some issues. The page I created used to allow simultaneous download but for some reason it doesn't any more. Can any one help me out in this area.
I have a page with links to files that I create dynamically. The user clicks on the link to download the file. The user was able to kick off many downloads at once in the past but for some reason it doesn't work any more. Is there some setting I need to change. The strange thing is I didn't even know the page did that so I have no idea what I changed.
First off I would like to thank you for replying to my post. ONe question though is if PHP is handling the download by reading the data from the server and out putting it to the user what could prevent the user from getting multiple download windows.
when you click on the link you get the save dialog box then you choose the download location and start the download. while the first file is downloading the user was able to click on a next link and get a new save dialog box to begin a next download while the current one was in process. Before the user could do this but now they have to wait until the first file finishes before kicking off a next download.
Is this affecting all browsers? If not, it's a browser "problem," in all likelihood. The problem being that browsers are normally set to limit the number of active connections to a server so as to limit the bandwidth they are taking from the server and avoid being banned by the server's proprietors for excessive bandwidth consumption.
The main point is that it was working before . The only thing I did was move to a bigger hosting plan but I never really touched the code that did the download.