Ilya Glebov

Results 3 comments of Ilya Glebov

I got this issue with both 4.8.1 and 4.8.0 versions of Docker on macOS. As a temp solution: downgrade to ver. 4.7.1 https://docs.docker.com/desktop/mac/release-notes/

On macOS Ventura, I encountered a similar issue when trying to install the `http` module. Here is what helped me: ``` $ brew install openssl $ luarocks install http CRYPTO_DIR=$(brew...

Actually that solves the problem. This manual says that individual curl_close() better to write after curl_multi_close() http://se2.php.net/manual/en/function.curl-multi-remove-handle.php So after curl_multi_close($this->curl_parent); I've wrote again: foreach ($this->calls as $key => $call) curl_close($this->calls[$key]['curl']);...