Changes between Initial Version and Version 1 of Ticket #31232, comment 2
- Timestamp:
- 02/05/2015 08:08:43 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31232, comment 2
initial v1 1 My understanding of the documentation is, that setting CURLOPT_PROXYAUTH to CURLAUTH_ANY is not supported, but only CURLAUTH_BASIC and CURLAUTH_NTLM.1 My understanding of the documentation is, that setting `CURLOPT_PROXYAUTH` to `CURLAUTH_ANY` is not supported, but only `CURLAUTH_BASIC` and `CURLAUTH_NTLM`. 2 2 3 3 We're running Wordpress with PHP 5.5.17 (fpm, using apache 2.4 with mod_proxy_fcgi) on SLES11. 4 4 5 Using CURLAUTH_ANY the Proxy-Authorization Header was not sent in the request. After switching to CURLAUTH_BASICit worked fine.5 Using `CURLAUTH_ANY` the Proxy-Authorization Header was not sent in the request. After switching to `CURLAUTH_BASIC` it worked fine. 6 6 7 So I'd suggest to change it to "CURLAUTH_BASIC | CURLAUTH_NTLM".7 So I'd suggest to change it to `CURLAUTH_BASIC | CURLAUTH_NTLM`.