Hello GetSatisfaction and all,
I am integrating Help Center into an environment that has an apache proxy which passes all requests from
http://www.youdata.com/support to
http://ydsupport.gotdns.com/support (standard LAMP server with nothing but help center 7.0 running).
At first glance things appeared to be working but then I realized that certain resources were referenced via absolute URLs. Instead of
http://ydsupport.gotdns.com/support/i... the generated page contained
http://ydsupport.gotdns.com/images/qu....
I thought I'd be clever and fix that with a simple mod_rewrite rule on
http://ydsupport.gotdns.com/ of:
RewriteRule !^/support(.*)$ /support%{REQUEST_URI} [L,R]
That worked.
Now my problem has moved on to something possibly related and I think I'd better slow down and address the initial problem to perhaps solve everything.
When I click a topic header and then "This answered my question" and then "Yes, allow it" (I'm logged in as a company rep) I see a few requests to my server (user-login, handle-oauth, handle-star) and the rewrites applied. Ultimately I receive a 404 for
http://ydsupport.gotdns.com/support/h...
but as far as I can tell,
http://ydsupport.gotdns.com/support/h... is a valid resource on the server.
I notice that the oauth-callback is also an absolute url to
http://ydsupport.gotdns.com/handle-st...* where I apply my rewrite to include the /support/ app.
Any insight as to my configuration problem?
Thanks very much!
James