Project

General

Profile

Actions

Feature #27988

closed

Override / add curl options to t3lib_div::getUrl

Added by Kilian Hann almost 13 years ago. Updated almost 13 years ago.

Status:
Rejected
Priority:
Should have
Assignee:
Category:
-
Target version:
-
Start date:
2011-07-08
Due date:
% Done:

0%

Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:

Description

Override any of the curl options, e.g. to forge the user Agent.

This should be done right before curl_exec


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Feature #28258: cURL: allow custom curl paramsRejected2011-07-16

Actions
Related to TYPO3 Core - Feature #28344: Include HTTP Request2 for better HTTP handlingClosedPhilipp Gampe2011-07-202011-07-25

Actions
Actions #1

Updated by Mr. Hudson almost 13 years ago

Patch set 1 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #2

Updated by Mr. Hudson almost 13 years ago

Patch set 2 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #3

Updated by Mr. Hudson almost 13 years ago

Patch set 3 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #4

Updated by Mr. Hudson almost 13 years ago

Patch set 4 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #5

Updated by Mr. Hudson almost 13 years ago

Patch set 5 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #6

Updated by Mr. Hudson almost 13 years ago

Patch set 6 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #7

Updated by Mr. Hudson almost 13 years ago

Patch set 7 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #8

Updated by Mr. Hudson almost 13 years ago

Patch set 8 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #9

Updated by Mr. Hudson almost 13 years ago

Patch set 9 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #10

Updated by Mr. Hudson almost 13 years ago

Patch set 10 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #11

Updated by Steffen Gebert almost 13 years ago

Example of how-to-test:

$reports = array();

$file = t3lib_div::getUrl(
    'https://review.typo3.org/static/typo3-logo.gif',
    NULL,
    NULL,
    $reports,
    array(
        CURLOPT_SSL_VERIFYPEER => FALSE,
     )
);
if ($reports['error']) {
    t3lib_utility_Debug::debug($reports);
} else {
    $this->content = $file;
}
Actions #12

Updated by Mr. Hudson almost 13 years ago

Patch set 11 of change I2dad06ea2552570079f62768f519919d8701bb21 has been pushed to the review server.
It is available at http://review.typo3.org/3150

Actions #13

Updated by Ingo Pfennigstorf almost 13 years ago

  • Assignee set to Kilian Hann

Could you please close this issue?

Actions #14

Updated by Steffen Gebert almost 13 years ago

  • Status changed from New to Rejected

Rejected in favor of #28344

Actions

Also available in: Atom PDF