Feature #27988
closedOverride / add curl options to t3lib_div::getUrl
0%
Description
Override any of the curl options, e.g. to forge the user Agent.
This should be done right before curl_exec
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Mr. Hudson over 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
Updated by Steffen Gebert over 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; }
Updated by Mr. Hudson over 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
Updated by Ingo Pfennigstorf over 13 years ago
- Assignee set to Kilian Hann
Could you please close this issue?
Updated by Steffen Gebert over 13 years ago
- Status changed from New to Rejected
Rejected in favor of #28344