- bug has been fixed; remaining buffering apache filter brigades are not directly...
[m6w6/ext-http] / KnownIssues.txt
1 Known Issues
2 ============
3 $Id$
4
5 HttpResponse class is only available for PHP >= 5.1
6
7 Not all places where files are handled check for open_basedir and/or safe_mode.
8
9 If you keep getting "SSL connect error" when trying to issue requests on
10 Windows, try another (newer) libeay32.dll/ssleay32.dll pair.
11
12 Inflating compressed HttpRequest responses happens twice if libcurl
13 was built with zlib support.
14
15 Internals:
16 - the request bodies created in http_request_pool_attach() are not
17 destroyed in http_request_pool_detach() but on reset;
18 may be a memory problem in long running scripts which reuse one
19 request pool several times
20 - there's a memleak with sizeof(zval) for each thrown exception,
21 which ends up in HttpRequestPoolExcepiont::$exceptionStack, in
22 HttpRequestPool::__construct(); it doesn't happen with wrapped
23 exceptions in HttpRequestPool::send().