On of my users (with admin rights) attempts to log into the admin page of our Drupal install yet he is taken to the home page of one of the domain access sites I have setup, and the page resolves with no styling even though when I look at the page source I can see the style reference is correct.
Now the real issue is that the person should not even be directed to the domain page as he is not an administrator or content user to that site.
When I look at the domain record "Home > Administer > Site building > Domains" I get a yellow box message as follows:
http://our.domain.com/drupal/sites/all/modules/domain/tests/200.png is not responding and may not be configured correctly at the server level. Server code 404 was returned
Can anyone help me figure out what might be wrong with our install?
(Current at 6.14)
Comments
Set Your Apache
Set your apache config file.
ServerAlias subA.domain.com
ServerAlias subB.domain.com
if you want to have a dynamic
if you want to have a dynamic setup use something similar to:
ServerName www.example.com
ServerAlias *.example.com
DirectoryIndex index.html
DocumentRoot /home/www/www.example.com/htdocs
....