-1
votes
0answers
20 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 ...
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
21 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 ...
0
votes
2answers
45 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
27 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 ...
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 ...
1
vote
1answer
50 views

Looking for command line ftp client (linux)

I am looking to batch download a large number of files (>800). I have a text file with the list of all the filenames. These filenames are then used to derive the URL from which they can be downloaded. ...
5
votes
2answers
108 views

Why download not working in Galaxy Tab 2 gt-p5113? while ok in all device

The Device Like Samsung GalaxyTAB2 GT-P5113 Android OS 4.1.1 Lenovo Android Mobile In many device my InternetReachability code will work But above device has not work Toste Message ...
0
votes
0answers
22 views

How to force download a file in PHP with multi-parallel download? [duplicate]

How to force download a file in PHP with multi-parallel download ? I attempt to open a stream force download a file using header and readfile successfully but It supports only 1 parallel (1 ...
1
vote
1answer
55 views

ASP.net Create a Torrent from File

Our current software updates are hosted on our server. We'd like to offer Torrents as an alternative download option from our server. When new releases are published it should offer people better ...
0
votes
2answers
59 views

Lazily detemine filename when using FileDownloader

In vaadin 7, how does one lazily determine the file name when using FileDownloader? final Button downloadButton = new Button("Download file"); FileDownloader downloader = new FileDownloader(new ...
0
votes
1answer
101 views

Download remote file straight to client?

I need download remote file straight to client. After some googling, I found this script in the php manual but its resume capability does not work. This script uses Http_Range to generate a resumable ...
0
votes
0answers
17 views

limit download managers

I would like to know how to block users from using download managers and to limit the download speed of the files on my sites. I have a dedicated apache server and the files are 99% video files in ...
0
votes
1answer
79 views

Can I save images in mode_private?

Currently I save an XML file in mode_private using the following method: public void Save_Data(String filename, String Datastring, Context context) { FileOutputStream fos; try { fos ...
2
votes
0answers
142 views

In Android---How to Resume download after Server restart?

Any one help me.. My problem is that when i am downloading file sometimes server is stooped & download is done only 50% after server start I want download from 51%. because 50% download is ...
0
votes
0answers
67 views

Microsoft Word download from web server issue

I am trying to troubleshoot the following issue. A client tried to download a word document and is getting the following error. Your organization's policies are preventing us from completing this ...
0
votes
2answers
88 views

Download large file in php with time limit

I'm trying to create a simple script which takes a URL in a form, download the file and deliver that file to the user. Something like a proxy server, only for downloading files. The only problem is ...
0
votes
1answer
103 views

Struggling to Download Files using Android Eclipse?

I am struggling to make a simple app to download files of the internet heres my code I have edited a little from another question but I am still getting not responding errors whenever I run my app can ...
-1
votes
1answer
228 views

how to download file from server to client machine into default folder set in browser without save/open dialogue?

In my jsf application files names are displayed using datatable component with checkbox option for each files and their is a single download button. When user select any file and click download button ...
0
votes
0answers
26 views

how to make download links privacy in html. form other site owners

iam creating websites with html i placing download links. to make this links accessible from my site only . if any other site holder place this link then it cant be accessed is it possible? ...
0
votes
0answers
8 views

Firefox add-on - path of downloaded add-on

before I install Firefox add-on, where does Firefox download the add-on installation file? Or after installing, where I can see the the installer file? thanks a lot.
2
votes
2answers
176 views

AsyncTask - slow download

I am using AsyncTask to download ~50 MB files from internet. Sometimes, when I download this file, progress bar gain is very slow (even when I am on Wi-Fi). And after minute, phone shows me, download ...
0
votes
0answers
22 views

File transfer, browser to browser, local networks

How does browser to browser file transfer work. I can make a good guess on how this site does it because the file is transferred through a third party server. I want to know how it would be possible ...
0
votes
0answers
69 views

Need to download XML files to the server, My.Computer.Network.DownloadFile fails to fully download them

The XML files are around 400kbs each, so it's not the biggest file size ever, but for some reason the files don't fully download, every time they stop at around 200kbs, the internet I'm working on is ...
0
votes
0answers
54 views

ios - changing a file name when downloading a file

I would like to know if there is a way to alter the name of file when it is being downloaded on an iOS device. The code below sets the path for my MP3 file (podcast) to be saved, but I can't seem to ...
3
votes
2answers
124 views

Streaming a file from the internet through PHP is slow

I'm writing a script which will stream a file from a web address through my server to the user. In its current state it works, but it is very slow. Here's the relevant code: /* Bytes per second */ ...
-2
votes
1answer
90 views

why download 0 bytes file from python-django [closed]

django 1.4. I am trying to develop a function to deploy download. I didnt get the right result. I attach my code at below. When I download after click hyperlink, I got a 0 bytes file. The ...
0
votes
1answer
197 views

How to make my web page images undownloadable in PHP? [duplicate]

Possible Duplicate: how to make images in my webpages not downloadable I am working on a PHP project that has photo gallery of my client.My client has asked me to put restriction on the ...
1
vote
2answers
473 views

Download all .tar.gz files from website/directory using WGET

So i'm attempting to create an alias/script to download all specific extensions from a website/directory using wget but i feel like there must be an easier way than what i've come up with. Right now ...
5
votes
2answers
108 views

How download manager breaks the file into multiple parts?

I am not clear about the concept of breaking the file into multiple part and then download each part separately. According to me, What we have only the path of that file where it exist on the internet ...
0
votes
1answer
219 views

Download multiple files simultaneously with PHP - Forking, Sockets

I'm using the following code to manage downloads from my site (the files are behind a captcha): http://www.richnetapps.com/php-download-script-with-resume-option/ Trouble is, when a file is being ...
0
votes
0answers
98 views

Inserting Headers into a Data URI?

I'm trying to dynamically create data in JavaScript that downloads with a .csv extension, but am unable to associate a filename with the download. Here's a code snippet: var data = '1,2,3'; ...
0
votes
1answer
72 views

How a file downloader work?

I want to code a simple file downloader in C#. I want to know ho it work? eg. If I give it a URL, what it will do? I have very rough idea about it. 1)It will send a HTTP request. 2)The server will ...
0
votes
0answers
203 views

Download a file from sharepoint returns bigger file size

I try to download a file from sharepoint using below method in my ASP.NET Project (C#). It always return a bigger file size and sometimes it returns corrupted file. What's wrong with it . I try so ...
0
votes
1answer
151 views

PHP on IIS 7.5 - Large file download blocks connection until download is complete

I want to allow users to download large video files. These files are outside of the public folder because of security reasons. I'm using a combination of fopen(), feof(), and fread() to download the ...
0
votes
0answers
73 views

Symbols in name suffixes to accept using wget

By using wget, I noticed that if the name suffix to accept have a symbol like "_" this is not considered. example: wget -A "*my_name*" does not work (it does not get my_name.html although it exists) ...
1
vote
2answers
268 views

Download files on a website with Javascript using iOS

I'm trying to download a file programmly on this site, and I found that when you click the highlighted download button("下载"), it runs a Javascript: ...
1
vote
2answers
59 views

the right options to traverse/download the pages/directories of a subdomain

Let's suppose exist a site with the following directories (subdomain) index.php |-sub1 |-index.php |-sub1sub1 |-index.php |-other.php |-sub1sub1sub1 |-sub2 |-index.php |- ...
1
vote
1answer
83 views

Download stored in RAM?

I got a question: How I understand this: "iOS Note: The NSURLDownload class is not available in iOS, because downloading directly to the file system is discouraged. Use the NSURLConnection class ...
1
vote
1answer
830 views

How to download all links to .zip files on a given web page using wget/curl?

A page contains links to a set of .zip files, all of which I want to download. I know this can be done by wget and curl. How is it done?
1
vote
1answer
622 views

(Indy) TIdHTTP EIdSocketError Socket Error # 0 exceptions when downloading files

I have this delphi code that basically download files from a secure server (using Indy build 10.5.8 r4743 if I'm not mistaken): The problem is: I'm getting random "Socket Error # 0" exceptions that I ...
0
votes
1answer
658 views

Howto: download a file keeping the original name in C#?

I have files on a server that can be accessed from a URL formatted like this: http:// address/Attachments.aspx?id=GUID I have access to the GUID and need to be able to download multiple files to the ...
0
votes
1answer
121 views

Downloading a file based on href of a HTML element

I am creating an Application in Java that does parsing of HTML and get all the <audio>, <img> and <video> tags. I did this using jsoup. I have the attribute href, and therefore I get ...
1
vote
1answer
153 views

How to limit speed downloading file in asp.net mvc 3

I have read this article on codeproject, but i dont know how to apply it to asp.net mvc 3 http://www.codeproject.com/Articles/18243/Bandwidth-throttling Here is code for downloading a file in my ...
-1
votes
2answers
889 views

downloading a file using php [duplicate]

Possible Duplicate: PHP: open a file download dialog I am looking to create a link, and by clicking it I am looking forward to download a file. Though I was able to do it by having a ...
0
votes
0answers
204 views

How mediafire.com prevent accessing to a direct link?

I am using mediafire with free account. WHen I was downloading a file from Media Fire, I easily can copy the "direct link" of the file as below. http:// 205.196.123.161/xxx/yyy/1.rar After that, ...
0
votes
1answer
131 views

How to generate temporory download link like google drive, Rapidshare? [closed]

I am new to python. I want to generate temporary download link for one file. So any solution for this ?
0
votes
1answer
85 views

cocoa: downloading using ASIHttpRequest and ASINetwork

I'm implementing a download manager in cocoa. The user can add several download requests, and the request manager will show the progress of the requests in a panel. I came into problem about the ...
0
votes
2answers
760 views

Cannot download files with classic asp iis 7.5

I am working on a clients website that is coded in classic asp with iis 7.5 and windows server 2008 r2 installed on the terminal server. The problem I m experiencing is when a user tries to download ...
0
votes
0answers
147 views

How to implement file download feature in sencha touch application?

I have a sample sencha touch application where i am displaying some search results in the list ,with each item in the i have download button with that , with click on download button i want to ...

1 2 3 4