One Hat Cyber Team
Your IP :
216.73.216.80
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
remi
/
php56
/
root
/
usr
/
share
/
doc
/
pecl
/
eio
/
View File Name :
INSTALL.md
Installation process is the same as for any PECL extension. There is a [special section on php.net](https://www.php.net/manual/en/install.pecl.php) describing the process. But just in case if you get lost, the following may clear up some points. AUTOMATIC INSTALLATION ---------------------- In most cases, it should be enough to install the PEAR base system package (for `pecl` command) and then run: pecl install eio The command above installs the latest stable release of `eio` uploaded to the PECL repository. In order to install a beta version, add `-beta` to the package name: pecl install eio-beta If you have the package archive, you can unpack it and then run: pecl install package.xml Note, the commands above require root privileges. Since version 0.4.0 beta libeio is embedded so you don't need to install the library separately. MANUAL INSTALLATION ------------------- phpize ./configure --with-eio --enable-eio-sockets --enable-eio-debug make Running tests: make test make install # (requires root privileges) In a PHP `.ini` configuration file, add the following directive: extension=eio.so Note that `eio.so` should be loaded **after** `sockets.so`, so the `.ini` file for `eio.so` should go after the file with `extension=sockets.so` in alphabetical order. E.g. ``` 20-sockets.ini 90-eio.ini ```