Nick Murtagh schrieb:
> Hi,
>
> I have two webware apps running on the same domain, one on /default/ and
> the other on /admin/. To avoid the session cookies from colliding, I
> made a small change in HTTPResponse.py:recordSession. The line
>
> cookie.setPath('/')
>
> is replaced by
>
> cookie.setPath(self._transaction.application().setting('SessionCookiePath',
> '/'))
Nick, can you check whether the following solves the problem, too?
cookie.setPath(self._transaction.request().adapterName())
That way you will not need to configure anything (we can still make it
configurable).
-- Chris
|