Changes between Initial Version and Version 1 of Ticket #37494
- Timestamp:
- 07/28/2016 10:09:02 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #37494
- Property Keywords has-patch added
-
Property
Milestone
changed from
Awaiting Review
to4.6
-
Property
Summary
changed from
Wordpress 4.6 Beta 4: Proxy setting not work
toProxy authentication is ignored by Requests
-
Ticket #37494 – Description
initial v1 19 19 20 20 21 debugging i see in Requests_Proxy_HTTP class, $use_authentication property is always false and in curl_before_send() method if $use_authentication is false curl_setopt CURLOPT_PROXYUSERPWD is never setted. If I force $use_authenticationto be true, everything works.21 debugging i see in `Requests_Proxy_HTTP` class, `$use_authentication` property is always false and in `curl_before_send()` method if `$use_authentication` is false `curl_setopt` `CURLOPT_PROXYUSERPWD` is never set. If I force `$use_authentication` to be true, everything works. 22 22 23 23 … … 47 47 48 48 49 This because Requests_Proxy_HTTP set $use_authentication property to true, only if Requests_Proxy_HTTP::__construct()has 3 parameters49 This because `Requests_Proxy_HTTP` set `$use_authentication` property to true, only if `Requests_Proxy_HTTP::__construct()` has 3 parameters 50 50 51 51 {{{#!php