[PHP] cURL documentaion

2002-01-25 Thread Roman Eich

Hello NG,

did anyone know an other documentation as the PHP manual or the manpages or
locations as http://curl.haxx.se/ , http://www.php.net?
Especially the exitcodes and solutions for it!

Thanks a lot

Roman Eich



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] SSL Connection with cURL

2001-12-20 Thread Roman Eich

Hi NG,

i want to establish an SSL connection with cURL. I used two different
scripts,
1)
$URL=ssl.server.com/path/file.ext;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,https://$URL;);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS , $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
$x = curl_errno($ch);
print($xbr$result);
curl_close ($ch);

and get exitcode 1

2)
function cURL ($URL, $options=)
 {
 $command=/usr/local/bin/curl;
 $options.= --stderr;
 $execstring=escapeshellcmd($command. .$URL. .$options);
 exec($execstring, $stdout, $errorcode);
 $output = implode (\n, $stdout);
 if ($errorcode0) $output=;
 return $output;
 }
$URL=https://ssl.server.com/path/file.ext;;
   $options= -d $data;
   $data = cURL ($URL, $options);

and get exitcode 2

Why i get two different exitcodes and why i get in the second version
exitcode 2?
Can anyone help me to solve this problem?

--
Roman



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]