Skip to main content

Posts

Showing posts from June, 2011

Installing Drupal7.2 in ubuntu 11.04

1. Installation requirements:( http://drupal.org/requirements )  Mysql  Php  Apache >>sudo apt-get install php5-mysql apache2 mysql-client mysql-server php5-gd 2. Download the latest Drupal Package: >wget http://ftp.drupal.org/files/projects/drupal-7.2.tar.gz Extract the tar file: >tar -zxvf drupal-7.2.tar.gz Rename the extracted folder to drupal: >mv drupal-7.2 drupal 3. Move the extracted Contents to /var/www directory: ravikumar@ravikumar-desktop:~$ mv drupal /var/www/ ravikumar@ravikumar-desktop:~$ ls /var/www drupal 4. In the settings/default directory copy the default.settings.php file and rename the copied file into settings.php: ravikumar@ravikumar-desktop:~$ cd /var/www/drupal/sites/default ravikumar@ravikumar-desktop:/var/www/drupal/sites/default$ cp default.settings.php settings.php ravikumar@ravikumar-desktop:/var/www/drupal/sites/default$ ls default.settings.php settings.php 6. Provide web server the permission to modify settings