By evyawebsites on
I am trying to set the multi site so i would share the module and thems for my websites,
i use the shared hosting from GoDaddy and i installed drupal 5.5 to the server for each website using a different database for each website and the files directory looks like this :
../sites/
-All/
-Modules
-Themes
-default/
-setting.php <- from website 1
-website1
-website2
i copied the setting.php from sites/all/website1/sites/default/setting.php
to ../website1/setting.php
and the same for website 2, But when i go to the admin section in my website to the modules list,
i do not see the modules i got in the ../all/modules/* folder.
any sugesstions ?
Comments
This is what you
This is what you want:
/sites/all/modules/ <- put shared modules here
/sites/all/themes/ <- put shared themes here
/sites/website1/settings.php <- configure 1st website here
/sites/website1/modules/ <- put website1 specific modules here
/sites/website1/themes/ <- put website1 specific themes here
/sites/website1/files/ <- location for uploaded files for website1
/sites/website2/settings.php <- configure 2nd website here
/sites/website2/modules/ <- put website2 specific modules here
/sites/website2/themes/ <- put website2 specific themes here
/sites/website2/files/ <- location for uploaded files for website2
Is this the structure you have? .. it's a bit hard to tell from your post.