Hello Wynand,
There are various techniques possible here - including renaming the konakart directory under webapps - but perhaps the simplest of all is to add these lines (in
red) to your conf/server.xml file just before the closing </Host>
<!--
<Valve className="org.apache.catalina.valves.FastCommonAccessLogValve"
directory="logs" prefix="localhost_access_log." suffix=".txt"
pattern="common" resolveHosts="false"/>
-->
<Context path="/mystore"
docBase="C:\Program Files\KonaKart\webapps\konakart">
</Context> </Host>
This would allow you to enter
http://yourhost:8780/mystore to run konakart.
Regards,
John