• Welcome to KonaKart Community Forum. Please login or sign up.
 

configuring the address

Started by wynand, March 15, 2007, 11:19:17 am

Previous topic - Next topic

wynand

Hello, :)

I would like to know if it is possible(and how) to change the address extension: http://localhost:8080/konakart
I want the 'konakart' part replaced with my storname....

Wynand ???

john

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

wynand

Hello John,

It worked perfectly, thank you!

Regards,

Wynand