Install Drupal

Now that you’ve created your database, go back into your favorite browser (I use
Chrome: http://www.google.com/chrome) and go to localhost:8888/d7-demo/install.
php. Choose the “standard” installation profile for now (see Figure 1-8); it will
take care of some basic configurations for you. On the next page, select English as the
installation language. If you need to install it in another language, there’s a handy link
on that screen that will show you how to do it.


Drush is the Drupal Shell, a mighty library of commands that are designed to make
your life easier in Drupal. Among the many things you can do with Drush, some of the
most exciting (from a designer/site builder’s standpoint) are:
• drush dl module_name: Download any module from drupal.org. You can even
download a string of modules by separating the names with spaces.
• drush en module_name: Enable any of the modules that you just downloaded. Like
dl, you can enable a string of modules by typing a space-separated list.
• drush up: This is my single favorite thing to use Drush for, and the reason that you,
dear reader, MUST LEARN DRUSH. With this simple command, you can update
all of your modules and Drupal core in about five minutes, as opposed to the—
ahem—considerably longer amount of time it takes to do it manually.
If you’d like to see a demonstration of the merits of using Drush versus installing modules
manually
Related Posts:
  • Defining a Block Blocks are defined within modules by using hook_block_info(), and a module can implement multiple blocks within this single hook. Once a block is defined, it will be shown on the block administration page. Additionally, a si… Read More
  • Apache Pool Size When using Apache prefork, you want to size your Apache child process pool to avoid process poolchurning. In other words, when the Apache server starts, you want to immediately prefork a large pool ofApache processes (as man… Read More
  • Drupal-based website Content is the primary building block of any website, whether it is constructed using Drupal or any other tool in the marketplace. Content is what visitors come to a website to find, and a lack of content is often the rea… Read More
  • Install Drupal Now that you’ve created your database, go back into your favorite browser (I use Chrome: http://www.google.com/chrome) and go to localhost:8888/d7-demo/install. php. Choose the “standard” installation profile for now (see Fi… Read More
  • Single Node Pages with Sidebars The point of starting off your template with a node page that doesn’t have sidebars isthis: you will inevitably have a page like this somewhere on your site. And many designers,well-meaning as they are, end up forgetting thi… Read More
  • Drupal's SEO tips Tthe default SEO options in Drupal provide you with basic features you need, such as search engine friendly URLs. 1.Configuring your Site Details2. Creating basic search engine friendly URLs3. Optimizing URL aliases4. Cont… Read More
  • Drupal-Optimizations While most optimizations to Drupal are done within other layers of the software stack, there are a fewbuttons and levers within Drupal itself that yield significant performance gains. Page CachingSometimes it’s the easy thin… Read More
  • Dedicated Servers vs. Virtual Servers Dedicated physical servers are going to outperform virtual servers when it comes to network I/O, diskI/O, and memory I/O, even in situations where the virtual server supposedly has been allocated moreresources (CPU, disk, an… Read More
  • Create the Other Pages Now that I have my basic page structure down, it’s time to start looking at the other pages in my site. Working with the styles I’ve already created (and creating new ones as I need to), I’ll create the following pages in my… Read More
  • XML-RPC A remote procedure call is when one program asks another program to execute a function. XML-RPC is astandard for remote procedure calls where the call is encoded with XML and sent over HTTP. The XMLRPCprotocol was created by… Read More
  • Moving Directives from .htaccess to httpd.conf Drupal ships with two .htaccess files: one is at the Drupal root, and the other is automatically generatedafter you create your directory to store uploaded files and visit Configuration -> File system to tell Drupalwhere … Read More