KonaKart Community Forum

Installation / Configuration => Configuration of KonaKart => Topic started by: wynand on March 15, 2007, 11:19:17 am

Title: configuring the address
Post by: wynand on March 15, 2007, 11:19:17 am
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 ???
Title: Re: configuring the address
Post by: john on March 15, 2007, 11:57:55 am
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
Title: Re: configuring the address
Post by: wynand on March 15, 2007, 01:21:13 pm
Hello John,

It worked perfectly, thank you!

Regards,

Wynand