A file download occurs on a network when a client computer requests a file to be sent to it from a server.

learn more… | top users | synonyms (1)

-1
votes
0answers
5 views

add .html when download pdf

I have uploaded PDF file to server and write <a href="myfile.pdf" /> when someone click on that link idm will grab and download how to prevent idm for grabbing my file without going to config ...
-2
votes
1answer
13 views

ger return bytes transferred nginx x-accel-redirect [closed]

I am using nginx with x-accel-redirect and apache as php backend proxy at port 80 (nginx is on port 8080) to serve large static file to my clients. the php verifies client login then sends ...
-1
votes
0answers
12 views

What is the best tou save files in Supporting Files or in Documents directory?

I want to ask what is better to save files and resources downloaded from web server ( that we will display in the iphone application ) in Documents by using NSDocumentationDirectory or in ...
1
vote
2answers
39 views

Downloading pdf is not working

I am trying to download locally the PDF that is there on my UIWebView using code mentioned below. Save PDF which is displayed by UIWebView locally When I type, NSLog(@"pdfille==%@", pdfFile);, I see ...
0
votes
0answers
13 views

How to set 'Content-Disposition' and 'Filename' when using FileSystemResource to force a file download file?

What is the most appropriate, and standard, way to set the 'Content-Disposition=attachment' and 'filename=xyz.zip' with Spring3's FileSystemResource? The action looks like @ResponseBody ...
0
votes
0answers
20 views

List/Download images from directory

I saw a post a few years ago using the code <form name="myform" action="#" method="POST"> <?php if(isset($_POST['group1'])){ $f=preg_replace('/(\.\.\/?)+/','',$_POST['group1']); ...
0
votes
1answer
23 views

Using Javascript to add custom http header and trigger file download

I would like to start a simple file download through the browser, however an access token must be passed with a custom HTTP header: GET https://my.site.com/some/file Authorization: access_token How ...
1
vote
2answers
29 views

Local FileSharing via a Web Interface

We have a document management system where users upload documents via a web page and we keep track of the files on our server in the cloud. Some users would like to store their files on a local file ...
0
votes
1answer
28 views

Downloading a file generated by a HTTP post using JAVA APACHE HTTPClient

I have a need to log into a webpage, download a file (that appears after a post) and then log out again. Logging in and out is fine, but I am having some troubles when I try to get to the file. In a ...
2
votes
2answers
41 views

Downloading a File From Virtual Directory

I am doing something wrong here, but not able to figure it out. I have a virtual directory and a files inside it and I want to download the file. My code: public ActionResult DownloadFile() { ...
0
votes
2answers
53 views

Open physical file on the server using ASP.NET

I want to open a physical file on the server on HyperLink click. <asp:HyperLink ID="HyButton1" Target="_blank" NavigateUrl='<%#Eval("FullPath") %>' runat="server" Text="Open File" ...
0
votes
0answers
13 views

How to create file download popup form in drupal7

I am new to drupal. I want to create a popup form with Name,Email Fields,Download and close button when user click the download link the popup form want to display then user give the name and email ...
1
vote
1answer
36 views

How to avoid the 0-byte file on Webclient download error

When using the following code to download a file: WebClient wc = new WebClient(); wc.DownloadFileCompleted += new System.ComponentModel.AsyncCompletedEventHandler(wc_DownloadFileCompleted); ...
0
votes
0answers
34 views

java android - download file http authentication

I want to download the content of html and json files from a webserver with http authentication on android. On the browsers I always used http://username:passwort@example.com/path/to/something, which ...
0
votes
0answers
25 views

Transfer file from Windows mobile device by calling WCF

I am looking for a solution that would allow me to transfer files from a Windows Mobile device to a remote location by calling a WCF service.The mobile device will call a WCF service to send files ...
1
vote
2answers
43 views

How to implement file downloader to detect communication breakage?

I need to implement a file downloader in C#. This downloader will be running on the client computer, and will download several files according to several conditions. The main restriction I have is ...
0
votes
1answer
19 views

What is the better way to save a (xml) file from a url?

Currently, here is what I'm wanting to do: Save the xml file to my computer from a url Parse it and grab the information that I want (which isn't all of it) Compare the parsed information to ...
0
votes
3answers
32 views

Best way to get a file from remote server and copy to local server using php [closed]

Let's say there is a file on a remote server that can be downloaded without any restrictions, ie. you can put the direct link to the file in your browser and it downloads the file, for example ...
0
votes
1answer
31 views

Call WCF service from iOS app

*Background:*I have a "document repository" kind-of app.The iOS app calls a WCF service to download the document as well as to get its metadata(document name,document size,etc).There is also a .Net ...
1
vote
1answer
30 views

How to submit a form and download the formatted information

Okay, so I have a form. I want to be able to enter information and when I hit the submit button, download the information in a formatted matter. For example, here is a basic form <html> ...
0
votes
1answer
48 views

WebClient Download - “Access to the path 'c:\\windows\\system32\\inetsrv\\MyPrintManager.exe' is denied”

I am attempting to download a file from another IIS site on my local machine. I have my main website that is trying to download from another public site that contains a few files that the user will be ...
0
votes
2answers
19 views

How to download and save large file from window azure?

I have a large file on window azure and I want to download and save it on my disk. The maximum time for each link on window azure is 60 minutes. If I dowload directly base on link, maybe it isn't ...
0
votes
0answers
30 views

How to create a download page using asynchronous controller in ASP .NET MVC4

I am creating a download page in ASP .NET MVC4. I believe this is a suitable case for using Asynchronous Controller since streaming a file is an I/O process and a file size can be in MB (even a GB). ...
0
votes
0answers
28 views

Flask+nginx : file download

I'm a newbie and I am making a website where I need the user to be able to download a word file by clicking on a link. I am using flask+nginx+gunicorn. I have used make_response by following : (1) ...
0
votes
1answer
11 views

IE8 fails to download file from WCF - doesn't recognize filename

I have WCF REST Service whos purpose is to serve files on request. WebOperationContext.Current.OutgoingResponse.Headers.Clear(); ...
0
votes
0answers
60 views

Progress Bar while downloading files using FTP and HTTP

There are two forms in use: the frmclient and frmprogressbar. When the client form loads, the files in the FTP server are listed. You can download files using both the FTP server or via HTTP. If ...
0
votes
2answers
36 views

Use wget command to download multiple files at diffrent locations

I want to download multiple files say www.google.com, yahoo.com and gmail.com at 3 different locations using wget. How should i go about it? Please help me out.. I am doing all this through c#: ...
1
vote
4answers
102 views

Objective C: Downloading File With Progress Bar [duplicate]

I am trying to put a progress bar that syncs during the download that is happening. My app now can download a file using with this codes... pdfData = [[NSData alloc] initWithContentsOfURL:[NSURL ...
0
votes
1answer
19 views

When I download Heroku Toolbelt, it downloads as “Unknown”

So when I double click on the file it opens it up in TextEdit... Not sure if there's another place besides https://toolbelt.heroku.com/ that I should try downloading it from or if it's possible I'm ...
1
vote
2answers
69 views

Downloading large files asp.net mvc 3?

I have a large pdf file (upto 2 GBs) on a database server which I want to send to client for download. Also, I have size limitations on my web server and cannot store complete file on it, after ...
1
vote
1answer
41 views

How to get a web browser to download a file that is stored in a JavaScript String?

I've been able to write JavaScript to cause the browser to download a file from a remote server using code like this: var iframe = document.createElement("iframe"); iframe.style.display = "none"; ...
0
votes
2answers
44 views

Trigger download servlet from GWT client code without loosing state or being obstrusive

Hy there, I am fairly new and inexperienced with those fancy web technologies, so sorry for the probably dumb question. I have a GWT app that generates an excel sheet on the server side, stores ...
0
votes
1answer
49 views

Download file from server using URL

I have a dot net mvc project where on the server side people generate reports. To allow downloading report from web, I have a function in controller that return File. public FilePathResult ...
0
votes
1answer
24 views

MVC 4 - Downloading localized files from resources, how to?

I've been playing around with MVC and localization for a multilingual site. It so happens I also have localized downloads (instructions in different languages). I thought: a resource can also contain ...
0
votes
0answers
19 views

Jquery: File download dailog box through Jquery without any server

I have to develop a static page with HTML and Jquery. On click of a link File download dialog box should get popped with filename with "save as","open" and "cancel" options.When I click on "save as" ...
0
votes
0answers
12 views

pclzip php delayed write error

I'm using pclzip in my php code for compress a folder on the user demand. I have a strange bug : Generated zip is not complete when i send it to the user. ( but it's complete after few seconds ) ...
0
votes
1answer
26 views

404 error when trying to download file on Windows Server 2003

I'm trying to put a .sqlite database file on my server so users can download it (ultimately it is going to be a replacement/update for a database that ships with an iOS app - see this question for ...
1
vote
2answers
54 views

I get error when use AFNetworking in xcode for download file

I create one application that has one page and in this page exist one button that downloaded file when click on. I can download file with AFNetworking but in my has error .... this is my code : - ...
2
votes
1answer
58 views

How to convert xls to xml file using java and springmvc?

I want to make a web-based app that can convert an xls file to xml file using java and springmvc. For example, I have an xls file like this: Person.xls Here is the pojo : @Entity @Table(name ...
0
votes
1answer
43 views

Images downloading intermittently

I have an iPad app which connects to a C# web service to download documents and images. If I run it as a fresh install on the iPad, it downloads the expected documents and images. If I upload a new ...
0
votes
1answer
49 views

how to use ProgressView in xcode for show download's status

I create one application that download file from url with any size.I have one button and one progress view in my page . I want when click on button downloaded file and show me download's status in ...
1
vote
1answer
58 views

how to download files from url and store in document folder [duplicate]

I created one application that has two page (first page for show list of data and second page for show detail data). when click on any cell go to next page and in next page exists one button with ...
0
votes
0answers
60 views

unknown file name change when file downloads

am using a script to download files from my site. if (isset($_GET['file'])){ $file = $_GET['file']; $query = "SELECT fileurl FROM dbname WHERE id='$file'"; $result = mysql_query($query); ...
0
votes
0answers
31 views

Downloads cannot find reliable source [closed]

I've recently bought a laptop (HP Pavilion G7)... It's pre-installed with Windows 8 and right now I'm having a bit of a trouble... Everytime I try to download anything, they are always left ...
0
votes
1answer
40 views

C: How to read a jpg from a file and save it?

I am having some trouble reading a jpg file and saving it. I want to implement a file sharing system between a client and server and I am unable to even read a jpg and save it on the same process. ...
0
votes
0answers
67 views

WebBrowser control .readystate=loading after download file in https site

I have a problem with my control in vb.net /C# application (mixed dlls) My application do login into the https site using webbrowser, and pick up file to download, when I click save as (done by hook) ...
0
votes
0answers
14 views

Password Protected/Coded Download Link

I currently have a personal website and I am creating a Photoshop tutorial book, in the book I am going to direct people to my website to download the starting images. As I am hoping to sell the book ...
0
votes
2answers
49 views

Which HTTP method to use for file downloading?

In my site users can download their files. But files are generated by using PHP. So what's HTTP method should I use for sending request for download as file attachment? GET or POST?
0
votes
0answers
30 views

Why do I get conflicts when Iam downloading the same files in Android by using Download Manager?

When Iam downloading the mp4 video Files using Download Manager, its getting downloaded. After Downloading process is completed i could be able to play the mp4 video Files. In my app, I given the ...
-2
votes
0answers
9 views

Slow Download of phpbb3 Attachments [closed]

Downloading files attached to my phpbb3 forum posts is very slow, and I'm unable to discover the root of the problem. The attachmentn do download, but it takes over two minutes for the file transfer ...

1 2 3 4 5 41