Is there a "formula" for a good web site for music bands?

We encourage users to post events happening in the community to the community events group on https://www.drupal.org.
dado's picture

I have some friends in a music band. Of course I want to tell them Drupal is the way to go. But how? Which modules/features work for a music band? Requirements must be pretty standard here:
calendar of performances
perhaps maps
photo gallery
some static pages for about us/member bios/history
some sample songs
news
forum or Yahoo group-like mailing list

Any best practices/lessons learned?

Comments

A good place to start is by

zirafa's picture

A good place to start is by looking at other music websites that use Drupal. Moby.com is one good start. You may find some other ones here: DrupalART active sites list

I think the lesson I've learned is to keep things as super simple as possible. For your requirements I'd look into:

  • event.module for the calendar (integrated with location.module, which allows events to have location information and a link to a map)
  • image.module for the gallery
  • page.module for static pages (core module)
  • audio.module for audio samples
  • story.module and/or blog.module (both core) for posting news or updates
  • forum.module for a forum (core module)
  • simplenews.module for a mailing list/newsletter
  • feedback form (core feature) allows users to send the band an email through a web form

I've had success with that combination of modules. The real trick to selling a band on Drupal is having a nice theme (hey, isn't that what most people care about anyway?). I'd use a nice 2 column layout theme like k2 or anything with a minimal amount of markup. Less markup means it will be easier for you to change and style later (either using CSS or modifying the markup).

thanks

dado's picture

thanks for this well-considered reply. Very sound advice