leuuuuu Posted October 17, 2011 Report Share Posted October 17, 2011 Vou tentar ser o mais claro possível.Possuo uma função em php utilizando cURL que busca imagens de 3 captchas diferentes.No meu servidor local para testes (xampp) consigo receber as 3 imagens sem problemas, tudo funciona.No servidor remoto, eu recebo duas das imagens, a terceira não tem como, já tentei de tudo.function recebe_imagem($url, $arquivo, $cookiej="") { $ch = curl_init ($url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiej); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_BINARYTRANSFER,1); $data=curl_exec($ch); curl_close ($ch); $fp = fopen($arquivo,'w'); fwrite($fp, $data); fclose($fp); return $arquivo; }Se alguém puder me ajudar ficarei muito agradecido.Obrigado! Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted October 20, 2011 Report Share Posted October 20, 2011 "Não tem como" não explica o problema. Você recebe algum erro? O que acontece exatamente?Um abraço. Quote Link to comment Share on other sites More sharing options...
0 leuuuuu Posted October 21, 2011 Author Report Share Posted October 21, 2011 O erro que recebo do cURL é este: couldn't connect to hostMas o host existe, está correto e o script funciona normalmente no servidor local. Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted October 24, 2011 Report Share Posted October 24, 2011 Posta a chamada da função.Um abraço. Quote Link to comment Share on other sites More sharing options...
Question
leuuuuu
Vou tentar ser o mais claro possível.
Possuo uma função em php utilizando cURL que busca imagens de 3 captchas diferentes.
No meu servidor local para testes (xampp) consigo receber as 3 imagens sem problemas, tudo funciona.
No servidor remoto, eu recebo duas das imagens, a terceira não tem como, já tentei de tudo.
Se alguém puder me ajudar ficarei muito agradecido.
Obrigado!
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.