Posts

Showing posts from 2014

How to use drush in drupal

Drush Drush was originally developed by  Arto  for Drupal 4.7. In May 2007, it was partly rewritten and redesigned for Drupal 5 by  frando . Drush is maintained by  Moshe Weitzman ,  Owen Barton , greg.1.anderson ,  jhedstrom ,  jonhattan , and  Mark Sonnabaum . Open  Your Terminal and enter commands. 1. Go to your project directory.      cd /var/www/drupal-7.34/ 2. Check drush status for drush install or not on your machine.     drush status 3. Clear drupal cache.    drush cc all 4. Install module.     drush dl juicebox 5. Enable module.     drush en juicebox 6. Install new theme.    drush dl bootstrap 7. Enable theme.    drush en bootstrap

How to apply patch in drupal using Netbeans

Problem: Apply patch on drupal module using Netbeans. Requirement: Netbeans(I am using Netbeans 8.2). Download patch file. Solution: For demo purpose I am using field collection module. I am here downloaded one patch for field collection which is support for revision diff functionality. View the following video for how to apply patch by using netbeans.

How to add browse button in ckediter for image upload in drupal7

Image
1. Download and enable ckediter and IMCE module. 2. Then open configuration and click on "CKEditor" link 3. After click on this you see the window like this  now click on edit link on front of Advanced profile. 4. Then select file browser link. 5.  Now click on save. DO THE SAME STEP FOR  FULL PROFILE. 6. Now click on Content ->add new content->Article-> Then the new window will open then  ** Click on "Upload button" on left side -->browse->then click on upload. That's it.