Anyone know a quick and easy way to get a listing of all the enabled modules within a multisite installation?

Thanks in advance,
Paul N.

Comments

cbrody’s picture

If you have drush installed you can do something like the following shell script:

for i in `find /path/to/multisite/installation/sites/ -maxdepth 1 -type d`;
do cd $i;
echo $i;
drush pm-list | grep "Enabled";
done