All Tags » cURL » Php (RSS)

Browse by Tags

  • To cURL or not to cURL?

    I haven't fully investigated this issue yet but I thought I'd post here as it is late and you never know, I may get some input before the morning. So here is the scenario...I have a method that creates a "Media Object" for our users. When a media object is created, the user is given...
    Posted to PHP (Forum) by CrazyMerlin on 05-05-2008
  • Re: Secure connection... looking for help

    Curl requires a certificate to do full verification of the host and peer through https. Essentially this application was released in this mode which is less secure to work on any system even if that cert is in accessible or not installed on the host.. To specify your certificate and to turn on the validation...
    Posted to PHP (Forum) by BarryR on 02-26-2008
  • Re: RestUtils using curl alternative

    Hello, I have changed RestUtils to use pear HTTP_Request when no support for curl, just make sure php is compiled with openssl enabled, otherwise you can't authenticate with https. I actually didn't go through with checking that it's fully working, since it was just easier enabling curl for...
    Posted to PHP (Forum) by stanzapub on 12-12-2007
  • RestUtils using curl alternative

    Hello, I am looking for an alternative to curl, to add to the RestUtils.php from the file manager (for the benefit of php without curl enabled). I have been trying to use PEAR HTTP_REQUEST, but haven't got it working yet, it seems to get stuck on authentication. Is there an already-written alternative...
    Posted to PHP (Forum) by stanzapub on 12-04-2007
  • Re: Is it possible? PLEASE HELP

    <?php $post_data = array(); $post_data [ 'pictures[0]' ] = "@cat.jpg" ; $post_data [ 'pictures[1]' ] = "@dog.jpg" ; $ch = curl_init (); curl_setopt ( $ch , CURLOPT_URL , " http://my.domain.com/my_url.php " ); curl_setopt ( $ch , CURLOPT_POST , 1 ); curl_setopt...
    Posted to PHP (Forum) by BarryR on 12-04-2007
Page 1 of 1 (5 items)