Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Remote Server HTTP Response is:

Content-Length[34027]
Content-Type[application/pdf;charset=ISO-8859-9]
Server[Sun-Java-System/Application-Server]
Date[Sun, 25 Nov 2012 18:13:57 GMT]
X-Powered-By[Servlet/2.4]
Content-Disposition[inline; filename=filename.pdf]
Cache-Control[private, must-revalidate]
Accept-Ranges[bytes]
Via[1.1 proxy-hostname]
Proxy-agent[Oracle-iPlanet-Proxy-Server/4.0]
Connection[close]

this is my php code which can not download pdf file:

$file_name = "tmpfile.pdf" ;
$fileTarget = fopen('tmp/'.$file_name, 'w');
$ch = curl_init($url);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FILE, $fileTarget);
$result = curl_exec($ch);   
curl_close($ch);

above php script actually download a file but that file is not pdf, instead html file.

Question is that, how can I download pdf file from remote server which response me with such http header parameters?

Solution: Find proper CAcertificate and configure curl

http://unitstep.net/blog/2009/05/05/using-curl-in-php-to-access-https-ssltls-protected-sites/

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.