Posts

Configuring drush on Mac OS X Lion

I downloaded the drush from the drupal website at http://drupal.org/project/drush. I downloaded the 7.x-4.5 version -  I was using mac os x and if you are also using mac os or any other flavour of linux - you should download the tar.gz file.  Drush works best on linux/mac os x - it works on windows as well but has its limitations, although things are improving but you will need to install additional software that allows you to use many drush functions. If you are interested to look at how to install drush on windows then have a look at drush.ws. I did install on my old windows pc as well, got most of it working. Coming back to the topic, we are installing on mac os x - so here goes. The accompanying readme.txt file is quite good in showing what is required, and it really is straight forward. Albeit there are a few differences and may be you would like to customise your installation a little bit - but this is what i did. The first step was to download and extra...

How do you expose your legacy database tables to views in drupal 6 Part 2

Continuing from Part 1 of the post where we defined custom data table to make drupal aware of our legacy data, we also want to define custom filters that can be used by the views system to define conditional views. in the hook_views_data() or our example code in part one, the candidate_views_data() function you can see that a field was defined as below:     $data [ 'candidate' ][ 'candidate_gender' ] = array (         'title' => t( 'Gender' ),         'field' => array (           'click sortable' => TRUE ,         ),         'filter' => array (             'handler' => 'candidate_handler_filter_gender' ,         ),     ); notice the filter key in the $data array, we want custom data to appear here, for example 'Male' and 'Female', so we have defined a custom handl...

How do you expose your legacy database tables to views in drupal 6 Part 1

This is a 2 part post, that shows how I exposed a legacy table to views in drupal and used the incredible power of views to create many combinations static and conditional views. This was very helpful for my client. I had a requirement that warranted exposing existing database table to views, so that views can contain data from this table.  To enable this to happen, the following steps need to be taken. In a custom module you need to first define the views_api hook as following: function candidate_views_api(){     $view = array ();     $view = array ( 'api' => 2 ,                   'path' => drupal_get_path( 'module' , 'candidate' ). '/views' );     return $view ; } candidate module was a custom module which I already had, so it made sense to add this hook here.  The important bit here is telling the drupal sub-system where the views file will reside.  ...

Drupal 5 and CKEditor

FCKEditor has had its hey days, worked well with drupal as well, but it was bloated and slow. Then came the CKEditor, shiny new and fast gui editor. There is a drupal 6 & 7 module for CKeditor, but the module for drupal 5 is missing. Understandaby, we dont want no one to use drupal 5 any more... however there are still some legacy systems using drupal 5, like the one i am currently working on. upgrading to drupal 6 is not straight forward and requires approvals and budgets from tons of people. The next obvious option is to write a custom quick fix to make drupal 5 work with ckeditor, ckeditor and drupal 5 works out of the box with wyiwyg module but unfortunately only works on drupal defined or cck defined content types, if the content type is defined programatically - it doesnt work with those textareas. Hence a need for a custom module like the ones available for drupal 5 & 6. There may be a work around i am thinking but havent yet got time to get around to trying....

Preparing your drupal development environment with Mac OS X Lion.

I just got a MacbookPro and the first thing i wanted to do was get a drupal developer environment on the machine, I ideally would have like to mirror what i had on my windows laptop - which was Apache/PHP/MySQL/Eclipse. I googled and found OSX Lion comes with Apache and PHP built in, I must add here that i didn't know there was a MAMP server similar to the WAMP server i had installed on my windows machine, but using the already installed Apache and PHP was just as easy. To enable Apache just do the following: 1. Go to System Preferences  2. Click sharing 3. Click Web Sharing service 4. Note the location of the Website Folder on my macbook pro it was Macintosh HD->Library->WebServer->Documents, i would think this is the same for you as well. We can change the document root from httpd.conf if required, i left it as is. A quick run to safari/firefox and go to http://localhost to make sure Apache is working - and it does tell you emphatically 'It Works!',...

Should i buy a Macbook?

Image
I tend to admire each apple product when it arrives, for their design and astethic sense. The ipad2 or macbook pro or the thinner macbook air - apple just seem to bring up one lovely product after another. The techie kid inside me wants to desperately own a macbook. Every few days i have an itch to buy a macbook pro or a macbook air for my drupal/php development, I must add I started as a windows fan and used to scoff at apple afficionados, and felt apple owners are a bunch of kids bragging about their toys while apple goes to the bank laughing. Well not a lot has changed about how i feel about Apple as a marketing company. For instance if you look at the current offerings for macbook pro, we have a core2duo, i5 & i7 processors. As far as core2duo goes, this is a 4 year old processor and at that it is selling at around £984 Core2Duo Macbook Pro on Amazon.co.uk whereas I had bought a core2duo based windows laptop approximately 3 years ago at £500 pounds looks like this macbook ...

Dashing Drush!

Drush is a feature of Drupal, that really shines. If you have used scripts to automate small administration jobs you will understand how useful this is in your toolkit. Things you can do with drush: 1. Download drupal, download and install modules 2. Enable/Disable and uninstall modules 3. Run cron 4. clear cache and much more. We all know how incredibly helpful drush can be, i am not going to write about this. Rather how to make drush working correctly on windows environment. Drush works best on linux, however a lot of developers use windows machine, and face a little bit of a challenge. Below is the list of things you have to do to make drush work well on windows. I have used the steps below to configure drush on my wamp machine. http://drupal.org/node/594744