Category: Cabot Labs

Install SSL certificate for iFrame based Facebook apps to support https mode

Posted on 04/18/11 No Comments

Facebook users who turn on https browsing option in their facebook profile will not be able to see facebook apps that are not secure.  More facebook users are going to start using https browsing feature especially when privacy its a growing concern.  It seems facebook is going to actively propmote https after recently Zukerberg’s own facebook profile [...]

Read more
Step1

Getting started with Windows 7 Mobile App development

Posted on 03/01/11 No Comments

Introduction Windows Mobile 7, renamed as Windows Phone 7 is the latest mobile operating system by Microsoft. It is launched on February 15, 2010, at, Mobile World Congress 2010 in Barcelona. Applications and games for Windows Phone are developed using Visual Studio and designed with Expression Blend. The combined power of these tools will make [...]

Read more

Getting started with JQuery

Posted on 01/06/11 1 Comment

For working with jquery we need to download the jquery.js file.Also need to add the following javascript code in our file. The first thing that most Javascript programmers end up doing is adding some code to their program, similar to this: window.onload = function(){ alert(“welcome”); } instead of above code, jQuery has a simple statement [...]

Read more

Configure Multiple Applications in Single CodeIgniter instance

Posted on 01/06/11 No Comments

About the CodeIgniter Framework CodeIgniter is a popular PHP framework which lets you creatively focus on your project by minimizing the amount of code needed for a given task. It is an open source PHP framework. Some advantages of CodeIgniter are: It is a light weight framework – The core system requires only a few very small [...]

Read more

iPhone Provisioning Setup and App Store Submission

Posted on 01/03/11 No Comments

iPhone Provisioning Setup and App Store Submission More PowerPoint presentations from anscamobile

Read more

Removing index.php from URL when using CodeIgniter

Posted on 12/27/10 No Comments

When using php codeigniter framework, we have to remove index.php from the url.  After removing the index.php, the url will look like http://www.example.com/codeigniter/sample.  This is useful for creating better Search Engine Friendly URLs for your web site. Steps to follow: Create a .htaccess file in the root of the project with contentsRewriteEngine on RewriteCond $1 [...]

Read more

Localizing Flex Application with Multiple Language support

Posted on 12/25/10 No Comments

Flex 3 allows adding multiple language support  in your application.  Here we are going see how to localize a flex application.  There are four major steps involved. Add Unsupported Locale Creation of MyResources Creation of MyLibraries Creation of Main Application So let us build a small flex application, from which we can switch from US [...]

Read more

Ajax based file upload component

Posted on 11/18/10 No Comments

The purpose of AJAX file uploading is to upload files without refreshing the screen.   Actually functions like a regular file upload but it mimics the AJAX feeling by using the iframe html object. In this article, we use a PHP script in the server to recieve the files.  Here are the basic steps to [...]

Read more