Monthly Archives: May 2009

Archive

Showing or copying your SIM contacts in to your Nokia E5 phone memory

To show all your contacts from your SIM in your Nokia E5 mobile phone do the following.

  • Go to Contacts > Options > Scroll down to and select Contact Info > Choose from options shown on the screen. In Nokia E5 it generally shows three options “All Memories“, “Phone Memory” and “SIM Memory“. You preferably will need to choose “All Memory

Continue reading

A tip on CakePHP find list with related model conditions

You will need to add recursive=>(value) to the $params when you need to get a ‘list’ of table items using related model conditions.

Referring to the example depicted here, http://book.cakephp.org/view/1022/find-list let’s say you perform the following query: Continue reading

An example of Google Checkout Integration in CakePHP

NOTE: You will have to make changes into the component code in order to get it working with you application. This is only a sample component and it should not be taken as a plug-and-play kind of component.

NOTE: Download the latest Google Checkout library files from here. After downloading it from this link you will have to make changes to component code where you “include” vendors files following the new file naming structure Google have laid there. As an alternate, I have attached vendors/google files with the new zip archive (This is an OLD one, it’s when i did this) but i would strongly recommend the use of new google checkout library.

I am posting an implementation of Google Checkout payment gateway in CakePHP which i had implemented an year ago in one of my client’s website. The implementation was based on the use of vendors and components. I placed all google checkout files in “app/vendors” folder and created a component to process transactions. The file structure of vendor file was something like the following: Continue reading

Object doesn’t support this property or method javascript error

In some browsers it would throw a “silent” error and stop executing javascript code. If you try to open page in IE in debug mode it would alert error message like this:

Object doesn’t support this property or method Continue reading