Hi there. I apologize if this has been covered somewhere, but alas, I'm not an Apache power user so I'm not even quite sure what to search for.
We have (2) servers, one that is running a wiki, and another CMS/publishing tool. We'd like to put links in the CMS tool that direct over to the wiki. I've added the directives I think are correct in .htaccess in: /var/www/html/wiki directory.
Here are those directives:
AuthType Basic
AuthName "Intranet Wiki"
AuthUserFile /var/www/html/wiki/.htpasswd
AuthGroupFile /dev/null
Require valid-user
Order Deny,Allow
Allow from X.X.X.*
Allow from 10.0.100.*
Allow from 127.*
Allow from *.subdomain.domain.com
Allow from *.subdomain.ofapp.domain.com
Allow from hostname.domain.com
Allow from another.hostname.domain.com
Satisfy any
On this line: Allow from X.X.X.* - that actually contains a valid public IP but I have changed this for security reasons.
Also, on the wiki server, we have added some preliminary test accounts to the .htpasswd file
However, when we click a link from the CMS tool, the redirect does go to the correct Wiki URL, but it doesn't take the credentials being passed. The page just stops at an error saying that the user needs to be logged in. We are using TikiWiki by the way.
Thanks in advance.
J