Home
last modified time | relevance | path

Searched refs:curl (Results 76 – 98 of 98) sorted by last modified time

1234

/plugin/redissue/
H A DREADME.md29 sudo apt-get install php5-curl php5-common
/plugin/gtime/gtlib/http/
H A DGTHttpClient.php57 $curl = curl_init();
62 curl_setopt($curl, CURLOPT_POST, 1);
65 $bytes = curl_exec($curl);
96 $curl = curl_init();
101 curl_setopt($curl, CURLOPT_POST, 1);
104 $bytes = curl_exec($curl);
175 $curl = curl_init();
183 $bytes = curl_exec($curl);
312 $curl = curl_init();
314 curl_setopt($curl, CURLOPT_URL, $url);
[all …]
/plugin/authfacebook/lib/HttpClients/
H A DFacebookCurl.php39 protected $curl; variable in Facebook\\HttpClients\\FacebookCurl
46 $this->curl = curl_init();
57 curl_setopt($this->curl, $key, $value);
67 curl_setopt_array($this->curl, $options);
77 return curl_exec($this->curl);
87 return curl_errno($this->curl);
97 return curl_error($this->curl);
109 return curl_getinfo($this->curl, $type);
127 curl_close($this->curl);
/plugin/mdpage/vendor/cebe/markdown/
H A DREADME.md137 curl http://daringfireball.net/projects/markdown/syntax.text | bin/markdown > md.html
173 curl http://daringfireball.net/projects/markdown/syntax.text | bin/markdown > md.html
/plugin/indobible/
H A Dsyntax.php73 $curl = curl_init();
77 curl_setopt($curl, CURLOPT_POST, 1);
80 curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
83 curl_setopt($curl, CURLOPT_PUT, 1);
91 …curl_setopt($curl, CURLOPT_HTTPHEADER, array("X-Requested-With: XMLHttpRequest", "Content-Type: ap…
92 curl_setopt($curl, CURLOPT_URL, $url);
93 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
95 $result = curl_exec($curl);
97 curl_close($curl);
/plugin/redproject/
H A DREADME.md27 $ sudo apt-get install php5-curl php5-common
/plugin/rocketchatnotifier/
H A DREADME.md12 This tool depends on php-curl (and by that also curl).
/plugin/icalevents/vendor/squizlabs/php_codesniffer/
H A DREADME.md22 curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
25 curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar
/plugin/authyubikey/
H A DREADME.md8 You have to ensure, that your PHP installation supports PEAR and curl (i.e. php-pear and php5-curl
/plugin/authyubikey/lib/
H A DREADME13 Make sure your PHP installation supports curl, and that you have
16 $ apt-get install libapache2-mod-php5 php5-curl php-pear
/plugin/botbouncer/lib/
H A Dbotbouncer.php550 $curl = curl_init();
551 curl_setopt($curl, CURLOPT_URL, $url);
552 curl_setopt($curl, CURLOPT_TIMEOUT, 30);
553 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
558 curl_setopt($curl, CURLOPT_USERAGENT,$this->UA);
559 curl_setopt($curl, CURLOPT_POST, 1);
561 curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
563 $result = curl_exec($curl);
564 $status = curl_getinfo($curl,CURLINFO_HTTP_CODE);
566 $error = curl_error($curl);
[all …]
H A Dmollom.php376 $curl = @curl_init();
383 @curl_setopt($curl, CURLOPT_POST, true);
384 @curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
385 @curl_setopt($curl, CURLOPT_HEADER, true);
386 @curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
388 @curl_setopt($curl, CURLOPT_TIMEOUT, self::$timeout);
394 @curl_setopt($curl, CURLOPT_POSTFIELDS, $requestBody);
397 $response = @curl_exec($curl);
400 $errorNumber = (int) @curl_errno($curl);
401 $errorString = @curl_error($curl);
[all …]
/plugin/daummovie/
H A DREADME.md43 * curl 함수로 변경...
/plugin/youtrack/
H A Dhelper.php100 $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);
113 curl_setopt($curl, CURLOPT_PUT, 1);
121 curl_setopt($curl, CURLOPT_URL, $url);
128 curl_setopt($curl, CURLOPT_COOKIEFILE, $this->cookie);
129 curl_setopt($curl, CURLOPT_COOKIEJAR, $this->cookie);
132 $content = curl_exec($curl);
[all …]
/plugin/youtracklinks/
H A Dhelper.php24 $curl = curl_init();
25 curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 1);
26 curl_setopt($curl, CURLOPT_TIMEOUT, 1);
27 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
32 curl_setopt($curl, CURLOPT_POST, 1);
37 curl_setopt($curl, CURLOPT_PUT, 1);
45 curl_setopt($curl, CURLOPT_URL, $url);
53 curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiejar);
54 curl_setopt($curl, CURLOPT_COOKIEJAR, $cookiejar);
57 $content = curl_exec($curl);
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dfetcher.url.curl.class.php39 $curl = curl_init();
43 curl_setopt($curl, CURLOPT_URL, $fixed_url);
44 curl_setopt($curl, CURLOPT_USERAGENT, DEFAULT_USER_AGENT);
46 if (!@curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1)) {
50 curl_setopt($curl, CURLOPT_HEADER, 1);
51 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
55 curl_setopt($curl, CURLOPT_PROXY, $proxy);
62 $response = curl_exec($curl);
67 curl_error($curl)));
68 curl_close($curl);
[all …]
H A DChangeLog144 * Fixed: error in demo script on PHP 5 with curl extension
582 * New: if curl extension is present, it will be used for fetching
/plugin/html2pdf/html2pdf/html2ps/demo/
H A Dhtml2ps.php86 if (extension_loaded('curl')) {
87 require_once(HTML2PS_DIR.'fetcher.url.curl.class.php');
/plugin/hipchat/
H A Dcomposer.lock23 "ext-curl": "*",
91 "curl",
/plugin/jiralinks/
H A DREADME.md7 For the remote issue links functionality, the curl PHP module needs to be activated.
H A Daction.php95 $curl = curl_init($this->getConf('jira_api_url') . $request);
104 curl_setopt($curl, CURLOPT_POST, TRUE);
107 curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data));
112 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
113 curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);
114 curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC) ;
116 curl_setopt($curl, CURLOPT_TIMEOUT, 10);
117 curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
118 curl_setopt($curl, CURLOPT_HEADER, FALSE);
122 $response = curl_exec($curl);
[all …]
/plugin/aceeditor/
H A Dbuild.js1 …age|cross|csc(?:d|h)?|csvread|csvwrite|ctranspose|cumprod|cumsum|cumtrapz|curl|customverctrl|cylin…
/plugin/fblogin/lib/
H A Dfb_ca_chain_bundle.crt12 ## can be directly used with curl / libcurl / php_curl, or with

1234