<-- snip -->
>I believe Roller is using the correct logic to determine the action
value on the login form.
>
>In your case it appears that Tomcat or your context is not configured
properly. Or there is a bug in Tomcat. Somebody is telling Roller >that
the context URI is "/roller" when in fact the context URI is
"/blog3/roller".
>
>Please post your Tomcat context config (blanking out your passwords!);
there might be a clue there.
>
>- Dave
Thanks for the response, Dave. Your email pointed me in the right
direction and I wanted to post it here to maybe help someone else.
My configuration of using apache -> tomcat needed an additional setting
in the tomcat server.xml file:
Old setting:
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
<Connector port="8080" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
enableLookups="false" redirectPort="8443"
acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"
URIEncoding="UTF-8"/>
New Setting:
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
<Connector port="8080" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
enableLookups="false" redirectPort="8443"
acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"
URIEncoding="UTF-8" proxyName="www.example.com"
proxyPort="80"/><HTML><BODY><P><hr size=1></P>
<P><STRONG>
This e-mail message and any attachments contain confidential information from
Medco. If you are not the intended recipient, you are hereby notified that
disclosure, printing, copying, distribution, or the taking of any action in
reliance on the contents of this electronic information is strictly prohibited.
If you have received this e-mail message in error, please immediately notify
the sender by reply message and then delete the electronic message and any
attachments.
</STRONG></P></BODY></HTML>