📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 17:24:25
📂
/
/
opt
/
alt
/
tests
/
alt-php83-pecl-gearman_2.2.1-1.el8
/
tests
✏️
Editing: skipifconnect.inc
<?php if (getenv("SKIP_ONLINE_TESTS")) die("skip online test"); require_once('connect.inc'); $sock = @fsockopen($host, $port); if ($sock === false) { die("skip unable to connect"); } $command = "getpid\n"; if (fwrite($sock, $command) !== strlen($command)) { die("skip unable to write getpid"); } if (fread($sock, 8) === false) { die("skip unable to read pid"); } fclose($sock);
💾 Save Changes
❌ Cancel