I'm trying to install ZeroMQ on my Debian server.
As per the instructions, I've installed libzmq-dev with aptitude, and now I'm trying to install the PHP bindings. Here I managed to install pecl, and installed zmq-beta. I edited my /etc/php5/apache2/php.ini config to include the extension.
After restarting Apache, my phpinfo() shows that ZMQ is enabled.
In one of my projects, I use composer to pull in some PHP packages, one of which called React. However I'm given the error message:
react/zmq v0.2.0 requires ext-zmq * -> the requested PHP extension zmq is missing from your system.
My extension_dir is pointing to /usr/lib/php5/20100525 from my php info, I'm not sure if this is correct.
Anyone got any clues?