Questions tagged [download]

Receiving data to a local system from a remote system, or to initiate such a data transfer. Do not use this tag for question asking where to download off-site resource.

18430 questions
5
votes
4 answers

Download Visual Studio 2003?

Hi I have an application developed in .NET 1.1 using Visual Studio 2003. I have to add some functionalities to it for which I need Visual Studio 2003 but unable to find it any where. I would really appreciate if any of you could redirect me to a…
msbyuva
  • 3,467
  • 13
  • 63
  • 87
5
votes
2 answers

download files from external url, and pass the file to user directly, without saving it on my server.

Basically I want to download a file from an external host and pass it directly to the user without having to be saved on the server, in practice, act as a proxy for this file, so that the request is always made from my server and not the user.…
user3297894
  • 61
  • 1
  • 4
5
votes
2 answers

Downloading a file from spring controllers throws IllegalStateException

I am using the following (which looks like a lot to this) code to download a file: @RequestMapping(value = "/tunes/{file_name}", method = RequestMethod.GET) public void downloadTune(@PathVariable(value = "file_name") String tuneId, …
5
votes
4 answers

Not able to download nltk data for framenet_v15

I am trying to download all the data package for the nltk. But it is always failing while trying to download framenet_v15. It simply hangs there. Tried multiple times from the same machine. Each time almost left for 30 mins and once more than one…
Biswanath
  • 9,075
  • 12
  • 44
  • 58
5
votes
1 answer

How to set a filename for "Content-Disposition: inline;" file on android device?

Greeting. There's a following set of header I use to process file being opened inline in browser window(usually it is PDF): header("Content-Type: " . $mime[$ext]); header("Content-Disposition: inline; filename=" .…
5
votes
1 answer

Python3 - urllib.request permission denied

When I try to download a file in python 3.3.2 with the urllib.request.urlretrieve function, I get the following error: Exception in Tkinter callback Traceback (most recent call last): File "C:\Python33\lib\tkinter\__init__.py", line 1475, in…
Tim Woocker
  • 1,883
  • 1
  • 16
  • 29
5
votes
1 answer

Execute permissions on downloaded file

I have made a script for installing a control panel. I've uploaded the script to a server so people can wget it to their machines. The only issue is that you have to chmod it after download. Is there a way to remove this step? How would I go about…
Sharkie
  • 51
  • 1
  • 4
5
votes
2 answers

Java Servlets: File download breaks when user navigates away from page

I have a servlet that allows users to download (potentially large) zip files from a web page. If the user clicks on a link to download a zip file, code similar to the following is executed in the…
Jeff
  • 14,831
  • 15
  • 49
  • 59
5
votes
2 answers

Allow MDB Downloads in IIS7

Currently if I am hosting an Access .MDB file to allow users to download, IIS7 is throwing a 404 error. I know the file is there and the permissions are fine. It appears to be a Handler issue, but I cannot figure out how to change the handler to…
Bryan Lewis
  • 5,629
  • 4
  • 39
  • 45
5
votes
1 answer

Youtube download link from http://www.youtube-mp3.org/

I've been using the http://www.youtube-mp3.org/ to obtain download links for mp3 songs for a "internet radio" project (download file stream and output it). Lately the http://www.youtube-mp3.org/ seemed to changed it's workflow. Till now I was able…
okipol
  • 1,197
  • 3
  • 11
  • 27
5
votes
3 answers

Download own videos in the youtube-api

Is there a way in the yt-api to download self uploaded videos? I want to make something like pixabay for videos. Thomas131
Thomas131
  • 131
  • 1
  • 12
5
votes
2 answers

php restrict access to files in directory

I am trying to restrict direct access to files in a directory. So for example i have website.com/files/example.flv. So if users go straight to the file in the URL, i want them to be redirected to the home page. I have tried the following using…
Daniel Lematy
  • 157
  • 1
  • 3
  • 13
5
votes
3 answers

MVC 4 Export To CSV - Save As dialogue box not working in Chrome and Firefox

I am trying Export csv file to the User with Open/Save option. My issue is some what similar to how-to-force-chrome-to-open-an-open-file-dialog-when-downloading-a-file-via-as(It is downloading the file in Chrome and Firefox), I have tried with the…
Shubh
  • 6,693
  • 9
  • 48
  • 83
5
votes
2 answers

What determines whether a browser will open or download a .txt file?

Let me start by saying that I am aware that you can specify the Content-Disposition in the header and use either "attachment" or "inline" and this question is NOT about that (at least not directly). I have a file with a .txt extension. I am…
Ojen
  • 817
  • 12
  • 23
5
votes
3 answers

Download files using requests and BeautifulSoup

I'm trying download a bunch of pdf files from here using requests and beautifulsoup4. This is my code: import requests from bs4 import BeautifulSoup as bs _ANO = '2013/' _MES = '01/' _MATERIAS = 'matematica/' _CONTEXT = 'wp-content/uploads/' + _ANO…
Filipe Manuel
  • 967
  • 2
  • 14
  • 33