Abhinav S.

16 Followers
2 Blog Followers
Following: 12
Following Blogs: 0

Latest Activity

JAXL library – List of available hooks for various XMPP events

Abhinav S. posted an article on - Apr 6, 2011, 6:16 pm
Jaxl 2.x provides an event mechanism using which developers can register callbacks for various xmpp events inside their application code. This blog post will demonstrate how to register callbacks for required xmpp events and go through a list of all available hooks. Finally, we will discuss paramete...
Comment - Like

How to write External Jabber Components in PHP using Jaxl library?

Abhinav S. posted an article on - Aug 24, 2010, 7:58 am
Jabber Component Protocol (XEP-0114) documents how XMPP protocol can be used to communicate between servers and “external” components over the Jabber network. XMPP components “bind” to a domain, usually a sub-domain of the main XMPP service, such as service.example.org. All incoming stanzas...
Comment - Like

XEP 0045 – Multi User Chat (MUC) available methods in Jaxl 2.0

Abhinav S. posted an article on - Aug 22, 2010, 10:09 am
Jaxl 2.0.3 (Jabber XMPP Library in PHP) comes with 15 XMPP extensions including XEP-0045 a.k.a. Multi-User Chat (Conference Room). In this blog post, we will go through all the methods available for XMPP applications developed using Jaxl library. Using MUC methods You need to include Jaxl implemen...
Comment - Like

PHP Code, Setup and Demo of Jaxl boshchat application

Abhinav S. posted an article on - Aug 17, 2010, 6:13 am
Jaxl 2.0 bosh support allow web developers to write real time web applications within minutes, without having any pre-requisite knowledge about the XMPP protocol itself. In this blog post, I will walk you through setup and demo of an XMPP based web chat application using Jaxl library. Get the code ...
Comment - Like

Facebook chat connect with X-FACEBOOK-PLATFORM using Jaxl 2.0

Abhinav S. posted an article on - Aug 8, 2010, 8:42 am
Facebook chat provides two authentication mechanisms for authenticating chat client users. DIGEST-MD5 require chat client users to enter their username and password, while X-FACEBOOK-PLATFORM can be used to provide better user experience by using simple Facebook Platform authentication. In this blog...
Comment - Like

XEP 0133 – Service Administration available methods in Jaxl 2.0

Abhinav S. posted an article on - Aug 6, 2010, 8:06 am
Jaxl 2.0 implements more than 10 XMPP extensions including XEP-0133 a.k.a. Service Administration. In this blog post, we will go through all the methods available for use in XMPP applications developed using Jaxl. Using Service administration methods You need to include Jaxl implementation of XEP-...
Comment - Like

Jaxl 2.0 Core classes, available methods and directory structure

Abhinav S. posted an article on - Aug 4, 2010, 7:30 am
In this blog post we will dig deep into the core of Jaxl 2.0 – An XMPP framework written in PHP. Specifically, we will go through Jaxl core directory structure. Towards the end we will get familiar with various core classes and their available methods (e.g. $jaxl->sendMessage()), that developers c...
Comment - Like

Writing a command line XMPP bot (echobot) using Jaxl 2.0

Abhinav S. posted an article on - Aug 3, 2010, 8:44 am
In this blog post, we will write a sample XMPP bot (echobot) using Jaxl 2.0. In turn we will introduce ourselves to some of the basic functionality we can do using Jaxl e.g. fetching roster list, subscribing and unsubscribing to a user presence, etc. We will also focus on how to use XMPP extensions ...
Comment - Like

Jaxl 2.0 – Installation, Usage guide and Example apps

Abhinav S. posted an article on - Aug 2, 2010, 6:41 pm
This blog post provides detailed instructions on how to download and setup Jaxl 2.0 for quick XMPP application development using PHP. We will also see how to run XMPP bots using Jaxl command line utility (now available by just typing jaxl on the terminal). Get the source code Jaxl 2.0 development ...
Comment - Like

Releasing Jaxl 2.0 – Object oriented XMPP framework in PHP

Abhinav S. posted an article on - Aug 2, 2010, 6:41 pm
After months of restructuring the Jaxl library, I am pleased to announce Jaxl 2.0, an object oriented XMPP framework in PHP for developing real time applications for browsers, desktops and hand held devices. What’s new in Jaxl 2.0? A lot of structural changes has been done from the previous vers...
Comment - Like

Introducing WP-Chat :: XMPP Chat plugin for Wordpress

Abhinav S. posted an article on - Jul 15, 2010, 5:25 pm
WP-Chat plugin embeds Jaxl IM (Instant Messenger for the web) for wordpress blogs. It runs across all major browsers and built upon XMPP protocol. It is a hosted solution from Jaxl.im empowering real time communication between you and your site visitors. It expects no software or hardware pre-requis...
Comment - Like

Setting Nginx, PHP Fastcgi and XCache on a new Ubuntu

Abhinav S. posted an article on - Apr 29, 2010, 9:38 am
Recently, because of a mandatory VPS move I had an opportunity to migrate all my sites from apache to nginx. My old box was in a messy state and setting up a new box from scratch was always going to be fun. Here in this post, I will walk you through all the steps that helped me migrate seamlessly. S...
Comment - Like

Setting up ejabberd 2.1.x development environment on Ubuntu

Abhinav S. posted an article on - Mar 31, 2010, 12:04 pm
apt-get provide a convenient way of installing ejabberd on Ubuntu distributions. However, if you are an erlang developer and looking to write custom ejabberd modules, you might want to install ejabberd from the source code. Checkout ejabberd source To start with lets grab the ejabberd 2.1.x branch...
Comment - Like

Wordpress Toolbar v 2.2 : Custom toolbar url, Support for WPMU and bug fixes

Abhinav S. posted an article on - Feb 15, 2010, 12:26 pm
Wordpress toolbar plugin provide a facebook, digg style toolbar for all outgoing links from your blog posts. The toolbar url defaults to http://yourblog/wp-content/plugins/wordpress-toolbar/toolbar.php. However with version 2.2, blog admin can customize toolbar url to http://yourblog/wordpress-toolb...
Comment - Like

Writing your first facebook chat bot in PHP using Jaxl library

Abhinav S. posted an article on - Feb 10, 2010, 5:18 pm
Today facebook officially announced availability of it’s chat through jabber/xmpp clients. This is a big win for XMPP, with almost 400 million new probable users adding into XMPP club. In this post, I will demonstrate how to connect to facebook chat servers using Jaxl client library in PHP. It...
Comment - Like

MEMQ : Fast queue implementation using Memcached and PHP only

Abhinav S. posted an article on - Feb 7, 2010, 9:16 am
Memcached is a scalable caching solution developed by Danga interactive. One can do a lot of cool things using memcached including spam control, online-offline detection of users, building scalable web services. In this post, I will demonstrate and explain how to implement fast scalable queues in PH...
Comment - Like

JAXL BOSH Demo: IM chat client for all Wordpress blogs

Abhinav S. posted an article on - Jan 28, 2010, 3:53 pm
Have you ever wished of a wordpress plugin capable of providing a facebook style chat bar on your blog post. In this blog post, I will lay down the details of how Jaxl’s bosh support comes in handy for building such browser based real time application. Specifically, I will explain how I achiev...
Comment - Like

Get real time system & server load notification on any IM using PHP and XMPP

Abhinav S. posted an article on - Jan 11, 2010, 4:54 pm
There are various system and server related information which server administrators always need to have as soon as possible, infact I must say in real time. There are several open and closed source softwares in the market which can generate almost real time notifications for you. Most famous one bei...
Comment - Like

Get lyrics for any song using XMPP and PHP right into your IM – Add lyricsfly@gtalkbots.com

Abhinav S. posted an article on - Jan 7, 2010, 12:03 pm
XMPP is soon finding it’s way into real time applications other than just chat. I have combined JAXL (Jabber XMPP client library written in PHP) and the API from lyricsfly.com to build a real time chat bot which can assist you with lyrics for any song. You can start using it by simply adding l...
Comment - Like

Wordpress style "Duplicate comment detected" using Memcached and PHP

Abhinav S. posted an article on - Jan 1, 2010, 2:00 pm
If you have a knack of leaving comments on blogs, chances are you might have experienced a wordpress error page saying “Duplicate comment detected; it looks as though you’ve already said that!“, probably because you were not sure that your comment was saved last time and you tried to r...
Comment - Like

Abhinav S.'s Blogs:

Abhinav S.'s Followers

Abhinav S. is Following

Invite Your Friends

Invite your contacts to blogged from:
gmail yahoo