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
Comment #1
frankcarey commentedThanks! what projects were missing?
Comment #2
frankcarey commentedComment #3
patcon commentedMore details
#871208: Tip about errors on install (misnamed cck and status modules in *.profile)
Marking this one as duplicate