Jump to content
php.lv forumi

izmantojot curl atmet "Connection Failed" (110) Connection ti


eriksz

Recommended Posts

jaa, varu! resurs man ir localhost!

varbūt kaut ko lieku pie setopt esmu salicis!

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "post=".$_POST['subject']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
curl_setopt($ch, CURLOPT_TIMEOUT, 0);
curl_exec($ch);

Link to comment
Share on other sites

Kāda operētājsistēma Tev ir un vai IP adrese ir statiskā vai caur DHCP? Man pašam php curl nestrādāja uz slackware ar DHCP, vajadzēja vienmēr pēc sistēmas palaišanas apache stopēt un palaist (ne restartēt), tā arī precīzi neizpētīju kāpēc, bet laikam apache palaižas ātrāk nekā tiek saņemtas DNS serveru adreses no DHCP, jo php curl strādāja ar IP adresēm bez apache apstādināšanas un palaišanas, ja pareizi to visu atceros, bet nu pamainot uz statisko IP un DNS serveriem, viss sāka darboties.

Link to comment
Share on other sites

OS ir SUSE Linux Enterprise Server 10. Problēma atrisināta. Vaina slēpās iekš proxy. Hosts ir virtuāls, tāpēc vajadzēja norādīt arī portu, pie tam pats os griežas uz virtuālas mašīnas!

Lūk ko es papildināju curl opcijās::

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, $proxy_port);
curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
curl_setopt($ch, CURLOPT_PROXY, $proxy_ip);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $loginpassw);

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...