I like where you are going with this! Great Job!

I noticed that the topmodules.profile included modules and during the install drupal complains about not finding them. I did some hunting around and found that the module calls seemed to be by the directory name. I revised the profile and install went fine:

function topmodules_profile_modules() {
  return array(
    // Enable required core modules first.
    'block', 'filter', 'node', 'system', 'user', 
   
    // Enable optional core modules next.
    'color',
    'comment',
    'dblog',
    'help',
    'menu',
    'path',
    'taxonomy',
    'update', 

    // Then, enable any contributed modules here.
    
    #admin
    'admin_menu',
    'adminrole',
    'googleanalytics',
    'backup_migrate',
    'mollom',
    
    #content
    'token',
    'views',
    'content',
    'webform',
    'imagefield',
    'filefield',
    'pathauto',
    
    #wysiwyg and image insert
    'wysiwyg',
    'imce',
    'imce_wysiwyg',
  );
}

Comments

frankcarey’s picture

Thanks! what projects were missing?

frankcarey’s picture

Priority: Normal » Critical
patcon’s picture

Status: Active » Closed (duplicate)