Andrew Connick wrote:
Thanks Mark

They have set the host to:
<Host name="windsor-chamber.co.uk" appBase="/home/andrew42/public_html">
<Alias>www.windsor-chamber.co.uk</Alias>
<Context path="" reloadable="true" docBase="/home/andrew42/public_html"
debug="1"/>
</Host>

and the context in public_html/ROOT/META_INF/context.xml is :
<Context docBase="ROOT" path="/"   reloadable="true" debug="1">
</Context>

There is also a  public_html/META_INF/context.xml, which is:
<Context reloadable="true" debug="1">
</Context>

OK. Closer, but still wrong. If they insist on including the <Context/> in
the <Host/> then get them to use the following:

<Host name="windsor-chamber.co.uk" appBase="/home/andrew42/public_html">
<Alias>www.windsor-chamber.co.uk</Alias>
<Context path="" reloadable="true" docBase="ROOT" debug="1"/>
</Host>

Delete:
public_html/ROOT/META_INF/context.xml
and
public_html/META_INF/context.xml

If you need to make changes to the context configuration then you'll need
to get them made to the <Context/> element in the <Host/> and Tomcat will
need to be restarted for them to take effect.

Mark



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to