Categories
ExtJS Javascript Sencha Touch

Adding Before & After Filters in Sencha Touch MVC Controllers

BeforeFilters in RoR are a great way to manage controller accesses or do execute any other specific controller action triggers. Here is a simple way of mimicking this great RoR feature on Sencha Touch MVC. Create a file named `app/controllers/Controllers.js` with the following content: Ext.Dispatcher.on(‘before-dispatch’, function(interaction) { if(Ext.isFunction(interaction.controller.beforeFilter)) { return interaction.controller.beforeFilter.call(); }; return true; }); […]

Categories
PHP Programming WordPress

[WordPress Plugin] BuddyPress xProfiles ACL

BuddyPress xProfiles ACL BuddyPress xProfiles ACL WordPress Plugin
Plugin Home: Click Here
Download: Click Here
Project Repository: Click Here
Support Forum: Click Here

Categories
How To Server Administration

[How To] Using NGinx as a Load Balancer

NGinx is an asynchronous event-driven web-server which has become immensely popular in recent years for its performance advantages. NGinx can be used is a reverse proxy to load balance HTTP requests among back-end servers. Here is how this can be achieved on a standard Ubuntu server: Setup —————————— |———-| Back-end Server 1 (BES1) | | […]

Categories
Javascript jQuery Plugins Programming

jQuery TagBox Plugin

jQuery TagBoxA jQuery based Tag Input plugin.
Demo: Click Here
Download: Click Here
Project Repository: Click Here