there is such code here:
$socket = stream_socket_server("tcp://127.0.0.1:8889", $errno, $errstr); if (!$socket) { echo "socket unavailable<br />"; die($errstr. "(" .$errno. ")\n"); } if I run it on Denver, then everything works fine, but if I run it on a Ubuntu server, it issues
socket unavailable I do not understand what the problem is. After all, on Ubuntu, all ports are open defaulted? Please tell me what could be the problem and how it can be solved.