Installing drupal

satya - Thursday, May 26, 2011 10:06:50 AM

Simplest way to play around with drupal

Go to drupal gardens and create a drupal site. This is easy enough to do. Then you want to understand

Create a content
link the content to a menu
Understand themes
adjust themes through structure/blocks

satya - Thursday, May 26, 2011 10:08:58 AM

Installing on windows

you can download the simple drupal executable that will install drupal for you on your local box. This installation will automatically install

Apache
MySQL
Drupal
PHPAdmin for mysql
control panel to start/stop

You may have to tweek etc hosts in windows to define multiple drupal sites.

satya - Thursday, May 26, 2011 10:10:43 AM

c:\winnt\system32\drivers\etc\hosts


127.0.0.1         localhost
127.0.0.1         drupal7.localhost

satya - Thursday, May 26, 2011 10:13:22 AM

\apache\conf\vhosts.conf


<VirtualHost *>
  ServerName drupal7.localhost
  DocumentRoot "C:\sites1\drupal-7.0"
  AccessFileName .htaccess
  <Directory "C:\Sites1\drupal-7.0">
      Options Indexes FollowSymLinks
      AllowOverride all
      Order allow,deny
      Allow from all
  </Directory>
</VirtualHost>