Installing Drupal on Mac OS X 10.5 Leopard Submitted by John on Wed, 2007-11-07 16:00 I thought I'd write up the steps I took to get Drupal running on a stock Leopard installation. Acquia Drupal is a free and open source Drupal social publishing system that provides a set of essential software. Moreover, Acquia Drupal is designed to offer a starting base for building Drupal. Download Drupal 7.19 for Mac from our software library for free. This Mac download was checked by our antivirus and was rated as safe. This free Mac app is a product of Dries Buytaert. The most popular version of the program is 7.1. The application's installer is commonly called drupal-7.19.tar.gz.
Drupal is a quality CMS application and is as simple or complex as your needs vary, it runs on the same foundations that Mac OS X Mavericks or Mountain Lion, Lion or Snow Leopard provides similar to a Linux environment.
This tutorial assumes a certain degree of comfort in the command line application (in the Utilities folder) Terminal for installing Drupal 7 on Mac OS X Lion or Snow Leopard but if the instructions below are followed correctly it will get the job done easily. If you would rather have a point and click install – follow the Drupal OSX guide here.
Before proceeding Drupal needs a couple of things to get going and those things are what is called an AMP stack – Apache, MySQL and PHP. Apache and PHP already come bundled in OS X and just need to be enabled but MySQL needs to be downloaded and configured, luckily a point and click installer is provided.
Optionally and preferably also install phpmyadmin to manage the database from a browser. To get the AMP stack working correctly on OS X follow this guide on Apache/MySQL/PHP and for phpMyAdmin if required. Once these components are in place you are OK to proceed. Or you may already have an AMP stack by using MAMP or XAMPP.
OS X has 2 web document roots ‘/Library/WebServer/Documents’ and ‘/Users/username/Sites/’ also known as ‘~/Sites’ this guide uses ‘~/Sites’. This tutorial assumes that the shared drupal directory will be called “drupal“. The mysql database will be called drupal and the mysql user is root.
Make a sharing directory and move into it:
get the latest drupal, swap 7.x for incremental updates[
expand it
move all files into shared directory one level up
move hidden files one level up
remove compressed archive and empty directory
create a settings file
fix permissions on the default directory and settings file
create a new database (no space between -p and password – as an alternative this can be done in phpmyadmin
or in phpMyAdmin
All done! faster than you can say “bitnami” If this is your first time installing Drupal, go with the Standard option
Then when you get to the Database configuration put in the details you used to set up MySQL in this case the db was “drupal” and the db user was “root”. In the advanced options you can tweak the db prefix, port and host, the default “localhost” should be fine for this purpose.
Next steps are to create a master admin account and a few generic system settings and you are done.
As a foot note, to sort out clean URLs, the .htaccess needs a tweak as the install is in a subdirectory, the “RewriteBase” needs to be explicitly set:
And also for smoother compatibilities for Drupal upgrades and module/theme add on installs change the local ownership to _www on your drupal web shared directory
To upgrade an incremental version of Drupal – say from 7.12 to 7.26, you download the new core base files and replace the current files in the web root apart from the Sites directory, and if customized, also the .htaccess file.
After replacing the files run a database update: http://mydomain.com/update.php or from within Drupal Admin > Reports > Available Updates > Update to patch any software.
Thats it Drupal should be up and running!