prepare v4.2.5
[m6w6/ext-http] / BUGS
1 Known Issues
2 ============
3
4 Windows:
5 If you keep getting "SSL connect error" when trying to issue
6 requests, try another (newer) libeay32.dll/ssleay32.dll pair.
7
8 Internals:
9 Inflating raw deflated data causes a re-initialization of the inflate
10 stream where the corresponding window bits are modified to tell libz
11 to not check for zlib header bytes. This is not preventable AFAICS.
12 Persistent handles and "cookiestore" request option do interfere,
13 as libcurl saves the cookies to the file on curl_easy_destroy(),
14 cookies are not saved until the CURL handle will be recycled.
15 Thus one would either need to
16 * run PHP with raphf.persistent_handles.limit = 0
17 * call raphf\persistent_handles_clean() every request
18 * call $client->flushCookies(), which is available
19 since libcurl v7.17.1 and does not work with the
20 procedural API
21 HTTP and Proxy authentication information (username/password) can not be
22 unset with NULL prior libcurl v7.19.6 and separate options for setting
23 username and password--which work--are only available since v7.19.6.