migrate/copy mysql databases from one machine to another
I am currently on Mac OS X( Snow leopard ) and have installed mysql using macports. I wanted to copy my databases to another machine Mac OS X ( Lion…
learnings, photography, travel, adventures, passions, life etc...
I am currently on Mac OS X( Snow leopard ) and have installed mysql using macports. I wanted to copy my databases to another machine Mac OS X ( Lion…
Based on my previous blog, here are the instructions to configure Samsung ML2245 on Mac OS X 10.6 ( currently I am on 10.6.7 ) 1. Install following drivers: samsung-gdi-1.816.2.dmg…
Imagine you have wifi enabled cell phone or any other device but you have only wired connection which means you cannot browse/download apps on your mobile. Well it takes just…
For my project CivCRM, I wrote a simple jquery plugin to change the row color on mouse hover. It is generic enough and can be used in any project. Here…
CiviCRM comes with CKEditor as a default wysiwyg editor. One of the missing feature has been ability to upload /browse existing files on the server using CKEditor. So after some…
If you are using jquery sorting a select element is quite easy. Check the below code. $(“#select-id”).html( $(“#select-id option”).sort(function (a, b) { return a.text == b.text ? 0 : a.text…
Recently I worked on a project where I had to pull data from an external site and populate a select on client’s website. Initially I thought it would be quite…
I have developed very basic iphone app for CiviCRM using Titanium framework. Features Allows users to “Search Contacts” from their remote CiviCRM database. Add Individuals. App uses CiviCRM REST interface…
You can implement a module and call below function function modulename_preprocess_page(&$variables) { unset($variables); } This will unset default title, but there are 2 problems: 1. This hook is not called…
If you want to revert your commit use below command svn merge -r : svn commit -m “Reverting bad commit. ”