loading modules from external directory

Hello, i have some modules that reside outside my yii project directory, now how do i load these modules into the yii projects? (this external modules folder will contain modules that can be called in both projects)

-modules

-project

  --index.php


  --protected


  --themes

-project2

  --index.php


  --protected


  --themes

thanks

in config specify:

‘modulePath’=>’/path/to/common/modules/directory’,

Great.

Thanks. :rolleyes: