There is no section in phpinfo() about sockets.
any idea how i can fix this problem?
the extension folder is the right one, the .dll is there but i dont have a clue why it isnt seeing it
i am running an apache server on windows
i have just started at looking at sockets, when i tried this script for php:
<?php
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
socket_bind($socket,'localhost',1337);
socket_listen($socket);
while($connection = socket_accept($socket))
{...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.