core

By Erik, Sun, 05/29/2011 - 23:46
There are many ways to get Drupal running on your Mac. OS X comes preinstalled with PHP and Apache, so theoretically, you'd only need MySQL. Acquia makes a separate version that includes Drupal, Apache, MySQL, and PHP (aka DAMP) already set up. This version is great if you really want to get up and running quickly. It's tied to the Acquia distribution of Drupal which has some extra features that we don't tend to use for our development. What I've found a reasonable compromise has been to use MAMP (a Mac application that provides - Apache, MySQL, PHP) and customize my own Drupal installation.
By Erik, Sun, 05/29/2011 - 01:24
(No drush!?!? #inconceivable) With all of the fancy ways to upgrade Drupal core floating around: drush, git, diff, patching. What if you only have FTP? As always, the first steps are to a) plan, b) backup, and c) be flexible. It always helps to have a plan. Write it down, think it through, practice on something other than your production site. The basics for updating a Drupal minor version (eg., 6.20 to 6.22) are that you need to save your /sites folder and anything that you've made changes to outside of the /sites folder. Usually those changes might be to .htaccess or robots.txt.
By Erik, Thu, 05/26/2011 - 18:46
When new security releases come out for Drupal, updating is definitely something that you want to do sooner rather than later. My philosophy has generally been to update my local setup immediately, let all of our developers/users know that I am going to update the shared dev server within two days, then schedule a time to update production based on any issues we find with the dev server. Since we run most of our sites as a rather large multisite, it means updating everybody at once, but hey, that's what dev's for, right? Well, we'll leave that for another discussion.