0

I'm trying to make automatic website source deployment via Deployer & SSH connect, but in built in deployer script there's connection using fsockopen() function and unix socket, and i always get following error: Warning: fsockopen(): unable to connect to unix:///tmp/ssh-......5204:0 (Unable to find the socket tra nsport "unix" - did you forget to enable it when you configured PHP?)

I searched for similar issue about few hours, but can't find any information about same issue with PHP fsockopen() & unix socket. Also i looked for my php.ini configuration and there's enabled openssl and provided extension directory, so i don't understand what mean:

...did you forget to enable it when you configured PHP?

from error note.

If who knows in what direction to look, please tell me.

P.S I'm using Windows OS and so for apache/php i use server platform OpenServer. (it's like WAMP, etc..)

Thanks!

kxc
  • 1,357
  • 2
  • 16
  • 39

1 Answers1

0

Try to enable sockets extension in your php.ini

extension=php_sockets.dll

Dionysios Arvanitis
  • 1,133
  • 9
  • 11