I installed Drupal CVS on a dev box to prepare for all the eventual upgrade changes. I have it mostly up and running but in place of my static front page, I get "Page not found". I'm using the default front page configuration to get the content from a module.

I keep going through the same checklist trying to figure out what I've screwed up:

  • I've specified the name of the module in the "default front page" field on the config page
  • I've enabled the module on the Modules config page
  • In the module body, I've stripped down the _page function to the bare minimum of:
function uehome_page() {
  print theme("page", "test");
}



It doesn't get any simpler than this. What in the world am I missing?