I’ve started looking how to enable both PHP4 and PHP5 on our (relatively) new dev box running Gentoo. The box is already running PHP4 so the task was to add PHP5 support as well. The official guide is rich in options you can use to achieve this. I didn’t want any CGI since we use… Continue reading Multiple Apache instances on Gentoo box
Category: PHP
Stomp and JSON
As I said in the previous post, one of my main intentions is to use Stomp to send map messages from PHP to Java. So in this iteration, I have added support for JSON encoding/decoding of message content. Before I dig deeper into new functionalities and changes, let me explain which JSON libraries (PHP and… Continue reading Stomp and JSON
PHP Stomp client
Download This work is based on Hiram Chirino’s excellent library. It would be great if this “extended” version become part of that project too, but for now you can grab it from here. While the original library is well written, there were few things that prevented me to use it in my project. I started… Continue reading PHP Stomp client