It seems that I need to somehow disable IPv6 on my php pages, but I am not sure how to do this. I think I have to add --disable-ipv6 somewhere into my INI file... this doesnt look like proper syntax though.
I am trying to solve the following bug: http://bugs.php.net/45519
Does anyone know where to put thi开发者_如何学编程s?
Once you've got the PHP source, disable IPv6 by configuring php with flag
./configure ...
--disable-ipv6
...
Then proceed with the installation
make && make install
Check the correctness of the procedure by invoking phpinfo()
this is ancient bug and I doubt it cause anything in your case.
精彩评论