Forked from icanhazstring/gist:71d974a58d2f35e8abc8
Last active
September 8, 2022 15:00
-
-
Save emresaracoglu/46271cfd25a64930db06ffb4aaa3526d to your computer and use it in GitHub Desktop.
Revisions
-
emresaracoglu revised this gist
Sep 15, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ yum install zeromq-devel ## install zmq.so cd ~ git clone https://github.com/zeromq/php-zmq.git cd php-zmq phpize && ./configure make && make install -
emresaracoglu revised this gist
Apr 20, 2020 . No changes.There are no files selected for viewing
-
icanhazstring created this gist
Jan 7, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ ## install yum install zeromq-devel ## install zmq.so cd ~ git clone git://github.com/mkoppanen/php-zmq.git cd php-zmq phpize && ./configure make && make install ## add extension to php cd ~/php-zmq mv modules/zmq.so /usr/lib64/php/modules vim /etc/php.d/20-zmq.ini (extension=zmq.so) ## restart fpm