Skip to main content

How Webmatrix make Drupal users life a little easier everyday...Zero to Drupal in 10 min.

how-webmatrix-make-drupal-users-lif

How to install Drupal with Webmatrix2.

(Please note that this tutorial is for Windows users only.)

I am going to show you the easiest way to get the latest Drupal core up and running in no time on your windows machine so without further adieu, lets get to what you came here to do.

Links list:

Download Webmatrix 2.
Download Drupal Core

Start

Step 1

Webmatrix is a free web development tool, I have been using it for a while now and I can say it’s amazing, it basically installs itself, all you need to do is follow the very easy installation instructions you don't need to tick anything or change anything, just click next until its fully downloaded and fully installed on your system.

Step 2

Next we need to get the Drupal core from http://drupal.org/project/drupal , this is the official site, always get the latest release. When its done, open the file and navigate to the file named drupal-7.18, extract it to your site files, in windows 7 the directory is in your My Documents folder, open the My Sites folder that Webmatrix creates and extract the Drupal core (drupal-7.18) into its own folder inside the My sites folder.

Step 3

Open Webmatrix, click on the open folder as site option, navigate to your My sites folder and highlight the Drupal folder, click the choose folder button. Wait for Webmatrix to open the editor window.

Step 4

This is probably the hardest part of installing Drupal with Webmatrix, creating the database. In the bottom right corner there is an option named database, click on it,the new database drop down button located in the top toolbar and select create new MySQL database. For the turtorial sake I will name it drupal, but you can call it whatever you want, you just need to remember it.

Step 5

At the top of the screen there is a run option ( that is if webmatrix hasn't already opened a browser window ) click on run with ( I work with Chrome and Firefox for the most part) dropdown and select your browser.

Step 6

Webmatrix will open a new browser tab, If you see something like this localhost:22334 you are on the right track, follow the on screen instructions.

Step 7

When you get to the New MySQL database tab enter the name you chose for the database, select the easiest user name and password, I usually use username: root Password: 1234. Click next.

Step 8

Fill in your details where it is required.

Step 9

Wait for the Drupal installation to finish.

Step 10

And presto you have drupal running on your local host.



End

Comments

Popular posts from this blog

Review : The new Pushtape Installation profile for Drupal 7 - Yay or nay?

AuthorRank: Google Have you heard of Pushtape?  Don't worry me neither.  But after this blog post we will definitely be sure if its a Drupal yay or nay.  The reason I chose this Installation profile as the theme for my post is simple, to make sites for bands in your community is an easy way to get your foot in the web development scene if you are just starting out.  All band sites basically works in the same way which means that you can just duplicate your site structure every time. OK so here we go. Pushtape is a new Installation Profile for Drupal 7 that focuses on musicians, it comes supplied with a discography framework, you can very easily post new events like shows, there is a custom photo gallery where you can upload multiple photos as a set and of course a nice looking news type blog for all those quick updates. The installation was really easy, clean, very well customized and quick. I use WebMatr...

Application development environment setup

Setup for application development right click and save images for bigger version Installing Java JAVA JDK Download In my experience I have found that starting your enviroment setup with java is best. In the system variables I made a new variable called it JAVA_HOME , and I set the value to: C:\Program Files\Java\jdk1.7.0_79 . After that, I edited PATH , which is also in the system variables and I added : ;%JAVA_HOME%\bin . In command prompt enter javac -version, if you see a return message javac 1.7.0_79 or something similar you can continue, I cant tell you how important it is to get this right, just know that things will go wrong at unexpected times. Installing Android SDK ANDROID SDK download List item In the system variables I made a new variable called it ANDROID_HOME , and I set the value to: C:\Program Files (x86)\Android\android-sdk . After that, I edited path , which is also in the system variables and I added : %ANDROID_HOME/tools% %ANDROID_HOM...