0
votes
0answers
10 views

How to download MP4 file that plays through a video player using the curl command

the following page automatically plays an MP4 that I want to download on a video player: ` http://www.stylelife.com/phase2xl/media/videoplay.php?content_filename=136433981.mp4 However, when I ...
0
votes
0answers
28 views

How to download video form server and upload another server

I want to download video ( like wav, mp4, mp3) from the server and upload another server using php. is it possible using php ? I am trying with CURL, but it's not working.. If any body can have any ...
-2
votes
0answers
40 views

Linux: Download file from random url (wget/curl) [closed]

I'm trying to download file from a random link structure, for example http://www.site.com/pathtofile/42afd174d7c6c23236d9e77363c1650a, which has a string (42afd174d7c6c23236d9e77363c1650a) that change ...
2
votes
2answers
86 views

can't download github project with curl command

I used "curl -sO" command to download project files from this GitHub project link: http://github.com/ziyaddin/xampp/archive/master.zip but, I couldn't download. There is error occured and says that: ...
0
votes
0answers
43 views

curl download multiple files by date

I would like to download multiple files from a site using a single curl command. Is there an efficient one line command to download all the files that have the same initial file path and/or have been ...
0
votes
1answer
28 views

How can I download a single file from multiple locations via HTTP?

I need to download a big file quickly, but all sources I can find have throttled bandwidth. Each of them seem to support HTTP 1.1 Byte Serving (Range Requests), since I can pause and resume the ...
0
votes
0answers
35 views

PHP Download multiple files simultaneously (parellel) from array of urls [duplicate]

I want to download multiple files (at the same time) from array of urls in php Example : $array = array( "http://mysite.com/a1.zip", "http://mysite.com/a2.zip", ...
1
vote
1answer
182 views

Box 2.0 API download call not showing download link to dl.boxcloud.com in POSTMAN or cURL

I am trying to download an image file via the BOX API via POSTMAN. The file id is 6917417032 My code is: https://api.box.com/2.0/files/6917417032/content I have specified the Authorization code in ...
0
votes
1answer
179 views

Multithread image download with cURL, PHP

I'm trying to use cURL to download images from an URL with multiple connections to speed up the process. Here's my code: function multiRequest($data, $options = array()) { // array of curl handles ...
0
votes
1answer
48 views

Download a file from a url and verify the file has been completely downloaded

I'm trying to download a biggish csv file from a website. I've seen the suggestion to use file_get_contents and file_put_contents but due to the file size I opted to use cURL and its file handle ...
2
votes
2answers
87 views

Error downloading file via cURL

I want to download a file from an ftp server via cURL. Here is my function: function getFile($remotefolder, $remotefile, $localfile) { $url = "ftp://xxxxx.de/" . $remotefolder . "/" . ...
1
vote
0answers
91 views

Simple way to download a file with cURL

In my program, I want to download a few files. So I took cURL and used this code (taken and modified a little bit from here Download file using libcurl in C/C++): #include "curl.h" using namespace ...
2
votes
1answer
83 views

How can I download an image over HTTP with unicode letters in URL?

How can I download the following URL (image) using PHP: http://www.delo.si/assets/media/picture/20121228/POLITIČNI05 tomi lombar.jpg?rev=2? The problem is that PHP somehow doesn't support unicode ...
1
vote
1answer
84 views

Using CURL/PHP to download from FTP in chunks to save memory

I am wanting to use this example: http://stackoverflow.com/a/5830599 Pretty much for the very reason mentioned on this page. I'm trying to serve up larger files (100-200megs in general) and need to ...
2
votes
1answer
102 views

PHP - Download cURL result

I wrote function below: function download_xfs($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_COOKIE, 'login=michael; ...
0
votes
0answers
259 views

Download file from another server using curl

i am trying to download a remote file using curl i tested this code in different files and servers and it was working fine,but it does not work here $ch = curl_init(); $targetFile = fopen( ...
1
vote
2answers
60 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
852 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?
0
votes
2answers
175 views

how to handle box.net download responce in php

i am trying to download a file using box.net using API in php. As per the documentation i wrote up the code. but in response i am getting some strange texts. here's my code: $ch = curl_init(); ...
0
votes
1answer
151 views

File download from server times out

I have the following code timing out when I try to download some files from server <?php $ch = curl_init(); ...
0
votes
1answer
777 views

Downloading site images through terminal using curl

I'm trying to download a large batch of images from a website onto my Mac. I can download the smaller images with DownloadThemAll, SiteSucker, etc but they don't quite dig deep enough. So I've had to ...
0
votes
1answer
114 views

Downloadable large remote images using PHP

I know there are lots of posts similar to this, but after crawling SO, still not found the answer. I am looking to write a script that acts as a proxy for downloading large remote images (around ...
0
votes
1answer
232 views

how can i download with php curl on the remote page with cookies?

UPDATED SCRIPT I am trying to login to a web page and save the session in a text file. The login was success and redirect me to the members page or other page if i need. but now i need download a ...
1
vote
1answer
307 views

Curl (php script) downloads incomplete file

I am using a php script in order to download an xml file from an external url using curl, but I am encountering a problem. Curl sometimes fails to download the complete file. The problem happens even ...
0
votes
1answer
929 views

Replicate an entire website (recursive download) that uses XML + XSLT [closed]

What is the easiest way to download a static copy of an entire website that is generated from XSL-transformed XML files? The wget approach didn't seem to work here: wget -l 3 -k -r -p -b ...
0
votes
1answer
346 views

cURL + download file via browser

When I use cURL to download some file, cURL will print the file to browser. But I want to open 'Save to' browser download window. How can I do that? $c = curl_init(); curl_setopt($c, CURLOPT_URL, ...
0
votes
1answer
257 views

php curl download file and get header

i want to download file via curl in php also get headers of that. // handler $h = fopen($filePath , 'w'); // curl $ch = curl_init($url); curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, ...
1
vote
2answers
670 views

curl - Don't download or overwrite file if exists

I want to curl download a link but I want it to skip files that already exist. Right now, the line of code I have will continue to overwrite it no mater what: curl '$url' -o /home/$outputfile ...
0
votes
1answer
66 views

how to override curl_exec setting headers

I'm building a combine/minify php script for js, using a number of online minify scripts, and I'm stuck at Google's Closure minify script. This particular script requires that you do a POST with the ...
2
votes
1answer
350 views

How to download a file over https using php

I need to download an xml file using PHP. I am able to read the contents of file by setting following options when making a curl call to it. curl_setopt ($http, CURLOPT_SSL_VERIFYPEER, false); ...
1
vote
2answers
262 views

Ignore Content-Type: application/force-download in CURL

I need to read the size of a file but the server is forcing me to download it first. I note one of the response headers is Content-Type: application/force-download and that seems to bypass my curl ...
-1
votes
2answers
253 views

PHP: why does this image fail to download?

Using PHP I'm trying to download/save the following image: http://www.bobshop.nl/catalog/product_image.php?size=detail&id=42428 When you load this image in a browser, you can see it, but when I ...
4
votes
3answers
752 views

PHP Downloading a Huge Movie File (500 MB) with cURL

Okay, I have a problem that I hope you can help me fix. I am running a server that stores video files that are very large, some up to 650 MB. I need a user to be able to request this page and have it ...
0
votes
1answer
230 views

Visual C++ Forms Application Error: C3374

I've been researching this for hours. I am VERY new to C++, and don't understand any solutions I have found thus far. I'm trying to make a cURL file downloader in my form application, but I get this ...
0
votes
1answer
350 views

Download an Image from Server (cUrl, however taking suggestions) C++

I am trying to set a rotating background image by downloading an image from a server (website) and attempted to do this with curl however have had 0 success at doing this. A (shortened) version of my ...
-2
votes
2answers
375 views

PHP: How to download multiple files without using cURL and/or Zip?

I was wondering if I can download multiple files without using cURL and/or Zip. I want to create a file that if it's accessed, it will return 3 files simultaneously. Is it possible?
1
vote
5answers
644 views

curl php download script works fine in browser but fails in cronjobs

I write curl php script which work is download csv file from one website after succesfully loged in. It works fine when i start it in my browser but it fails when i put it on cron jobs list. I seen ...
2
votes
1answer
2k views

How to download in bash from zippyshare?

Can anyone help me how to download files from zippyshare.com using bash (server with CentOS)? Their download button made with flash, so i can't retrieve download link.
0
votes
2answers
1k views

Curl PHP getting/download file from dynamic link

Need to download using cURL from dynamic generated link link: something.com/fileid=hgkjfdhgfhdg if access directly link it'll show download box (file save option). but if use CURL or ...
-1
votes
2answers
127 views

Php curl incorrect download

I'm attempting to use Youtube's API to pull a list of video and display them. To do this, I need to curl their api and get the xml file returned, which I will then parse. When I run the following ...
2
votes
0answers
164 views

urllib2 gives inconsistent output - often part of the webpage is downloaded

I am using urllib2 to open and save a webpage. However, often only a part of the webpage is downloaded, whereas sometime the full page is downloaded. import urllib2 import time import numpy as np ...
0
votes
2answers
2k views

How To Download Large Number of Images From List of URLs? [closed]

I have a long list (hundreds of thousands) of image URLs and want to download them automatically to a local folder, what is the most straightforward way of doing so? I considered curl/php, but am not ...
1
vote
1answer
674 views

Youtube Video download in php using regex

i am using following code for downloading youtube video. <?php header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the ...
0
votes
4answers
274 views

Curl only save if not 404

I'm writing a python program for downloading some pictures of students at my school. Here is my code: ` import os count = 0 max_c = 1000000 while max_c >= count: os.system("curl ...
0
votes
2answers
735 views

curl_exec succeeds but the output file is empty

I wrote the PHP function below to download files and it works as expected. However, when I try to download this file: $url = ...
3
votes
2answers
384 views

downloading with curl using multiple connections

I'm trying to tranfer a multi-gb file from one server to another; problem is RTT is 150ms+. Ive already tried using aria2 but its limited to 16 connections, lftp doesn't have any protection against ...
0
votes
0answers
155 views

Download from Apple Developer from command line [closed]

I was wondering if it's possible to download something from http://developer.apple.com/ with wget or curl. An example is ...
1
vote
2answers
407 views

How come I can't download this webpage in python?

Please try this yourself :) ! curl http://www.windowsphone.com/en-US/apps?list=free the result is: <html><head><title>Object moved</title></head><body> ...
1
vote
0answers
186 views

rTorrent like download manager in php for HTTP files

What i'm looking for is a download manager, like rTorrent, or transmission-webgui, but for http. (Say like, linux iso downloads). What I have made myself is a very simple script which takes a few URLs ...
2
votes
2answers
538 views

cURL php download and upload without save in the middle

I have a situation where I need to move files from one location to another. Using cURL, it is simple to download the files and then upload them using the sweet at symbol i.e. ...

1 2