|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-12-14 07:15 UTC] jl_villar at hotmail dot com
fsockopen() does not works in AF_UNIX mode. This works fine in Digital Unix 4.0 but not in Linux 2.2.16 I had try use relative and absolute directions for the path to the socket but does not work. thanks JL PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 02:00:01 2025 UTC |
my script in php is simple. Its a conection with a relative direction with a socket AF_UNIX like this: ----------- $enlacePuente="../pge/fichero"; $fp = fsockopen($enlacePuente, 0, &$errno, &$errstr, 30); if(!$fp) { genera_error("No activado puente a PGE: $errstr ($errno)en $enlacePuente"); } ----------- I had try use absolute directions too (like "/etc/httpd/htdocs/myweb/pge/fichero" and others)and it doesn't work. The program server that creates the point 'fichero' it?s had been programmed in C (its basically a server in AF_UNIX mode). This program don?t have errors and works fine in Linux with other client?s, in fact all, php included, works fine in a Digital Alfa 4.0E (in all manners that I had probe in Linux 2.2.16) Concretely the error that reports php its '(111) conection refused'. The same error that it?ll report if php didn't find the point of the AF_UNIX socket.