Twitter BootStrap NavBar Color in IE8/9

On September 5, 2012, in Web Development, by Anuj Gakhar

I am a big fan of Bootstrap and recently upgraded one of my projects to v2.1.0 which was released on August 20, 2012. I have been using a custom background image for the top navbar all this while and after the upgrade, I noticed that my navbar was now white background in IE 8/9 (didn’t […]

Tagged with:  

Getting Railo working under Mountain Lion 10.8

On July 26, 2012, in ColdFusion, Mac, Railo, by Anuj Gakhar

I have upgraded to Mountain OSX Lion 10.8 since it’s release yesterday and although the installation went pretty smooth, I am noticing some issues with my Apache setup. I use Railo with Tomcat as the servlet engine and Apache as the webserver. If you have a similar setup, here are the minor things you would […]

Tagged with:  

Simulating Safari on iPad in Safari on Desktop

On May 10, 2012, in Browsers, by Anuj Gakhar

One of the sites I am working on works differently on the desktop than it does on the iPad. And whenever I make a change, I end up having to test on both my iPad and my Mac which is OK most of the times but if I am doing more than 5-6 changes, then […]

Tagged with:  

HTML5 Forms, Fallback Options and Validation

On May 3, 2012, in Javascript, Browsers, by Anuj Gakhar

I am starting to get into HTML5 development slowly and one of the first things that came across was the forms. HTML5 has got some nice features up it’s sleeve when it comes to forms. I won’t be going into the details of what features are available in HTML5 forms and what they do and […]

 

Replacing BugTracer Email Functionality in ColdBox with LogBox Loggers

On April 24, 2012, in ColdFusion, by Anuj Gakhar

ColdBox used to have a BugTracerReport config element which you could configure to send error emails to yourself while showing a user friendly error page to the site users. Not quite sure of the exact version, but I think this feature was deprecated in version 3.1 in favour of the new LogBox which comes built-in […]

Tagged with:  

Changing the default URL pattern for REST Services in ColdFusion 10

On February 20, 2012, in ColdFusion, REST, by Anuj Gakhar

In my previous post, I did a very simple REST service using Adobe ColdFusion 10. The way ColdFusion handles REST-enabled services is via a pre-defined Servlet Mapping in web.xml that looks like this :- [xml]<servlet-mapping id="coldfusion_mapping_15"> <servlet-name>CFRestServlet</servlet-name> <url-pattern>/rest/*</url-pattern> </servlet-mapping>[/xml] This Servlet Mapping has a URL Pattern which tells CF that any URL starting with “/rest” […]

Tagged with:  

Using REST Services in ColdFusion 10

On February 20, 2012, in ColdFusion, REST, by Anuj Gakhar

ColdFusion 10 went into public beta a couple of days ago and I installed it on a Windows 7 VM, to test it out. There are a LOT of new features in this release and I am sure the next few weeks will be pretty busy in the ColdFusion blogosphere, with posts coming from all […]

Tagged with:  

ColdFusion 10 and ColdFusion Builder 2.0.1 Public Beta

On February 18, 2012, in ColdFusion, by Anuj Gakhar

ColdFusion 10 and ColdFusion Builder 2.0.1 beta is out… go get your copy from here :- http://labs.adobe.com/technologies/coldfusion10/ – I am just going to install it in a VM and play around with it over the next few days.. Some of the new features (directly from the Adobe’s site) Unique HTML5 built-in support to deliver richer interfaces without […]

Tagged with:  

Using Apache mod_cache

On February 10, 2012, in Web Development, by Anuj Gakhar

Recently, I’ve been looking at some of the caching mechanisms to allow for a faster response time from Apache webserver. I know this is a pretty huge topic and it appears that the general consensus is to use one of the known tools like redis, memcached or varnish. However, before diving into one of these […]

Tagged with:  

Railo, ORM and MySQL 5.5.x gotcha

On February 1, 2012, in ColdFusion, Railo, by Anuj Gakhar

I was testing the ORM stuff in the latest version of Railo (3.3.1.000 final) and after setting up the ORM settings in Application.cfc, when I tried to run the code, I could not get Railo to create the database tables, even with dbcreate=”dropcreate”. Here is my code, that was not working :- [cf] this.ormsettings = […]

Tagged with:  
© 2011 Anuj Gakhar