Lines Matching full:curl
93 if (!extension_loaded('curl')) {
94 msg('You need to have curl installed and enabled to use the YouTrack plugin', -1);
100 $curl = curl_init();
101 curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 1);
102 curl_setopt($curl, CURLOPT_TIMEOUT, 1);
103 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
107 curl_setopt($curl, CURLOPT_POST, 1);
109 curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
113 curl_setopt($curl, CURLOPT_PUT, 1);
121 curl_setopt($curl, CURLOPT_URL, $url);
124 // curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
125 // curl_setopt($curl, CURLOPT_USERPWD, "username:password");
126 // curl_setopt($curl, CURLOPT_COOKIEJAR, $ckfile);
128 curl_setopt($curl, CURLOPT_COOKIEFILE, $this->cookie);
129 curl_setopt($curl, CURLOPT_COOKIEJAR, $this->cookie);
132 $content = curl_exec($curl);
133 curl_close($curl);