• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 11, 2024, 04:00:36 pm

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - nickgk

16
Hello,

I was about to post asking about this very same issue. KV, could you please elaborate a little on your 'crosss-context dispatch' solution?

Many Thanks,
Nick
17
Configuration of KonaKart / Re: Redirect Strategy
June 05, 2008, 03:10:39 am
Heidi,

Thank you for reply. It led me on path to a solution I am happy with. I implemented the JkMount part of your suggestion and it redirects .jsp and .do traffic as it should. But, it does not redirect the base URL of the site to the konakart engine like this:

http://www.susato.com   --> http://www.susato.com/konakart

In the process of adding your suggested JkMount directive I found out about apache mod_rewrite and added the following to my httpd.conf file.

RewriteEngine On
RedirectMatch ^/$ http://www.susato.com/konakart/
RedirectMatch ^/susatoocarinas\.html$  /konakart/SelectCat.do?catId=149


It redirects normal entries to the site and allows me to add redirects for a number of pages that have search engine prominence. Hope this helps someone else out there.

Thanks,
Nick
18
Configuration of KonaKart / Redirect Strategy
June 04, 2008, 07:50:46 pm
Hello,

I have a static html site at http://www.susato.com and I have a konakart based site that is close to being ready for 'go-live' at http://www.susato.com/konakart.  I would like to redirect all traffic that arrives at www.susato.com to www.susato.com/konakart. I believe this can be done with an Apache redirect like this:

Redirect / http://www.susato.com/konakart

The tricky part is that I also want to redirect traffic from specific URL's like this -->

www.susato.com/susatoocarinas.html - I would like to be translated or transmorgrafied :) to:

http://www.susato.com/konakart/SelectCat.do?catId=149

This would have to be implemented to TomCat because the request is out of Apache's hands at this point.  Am I correct? Does anyone have any insight on this? How has this commonly dealt with? I would love to go live soon.

Thanks,
Nick


19
Hello,

I have a test environment and a production environment and (for now) I want to be able to export product info from the test environment to the production environment. I am getting the following error message when I invoke ExportFromKKUsingSOAP.sh or ExportFromKKUsingEng.sh. Does anyone know what might be causing my export to choke?

Many Thanks,
Nick

java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
   at java.util.ArrayList.RangeCheck(ArrayList.java:546)
   at java.util.ArrayList.get(ArrayList.java:321)
   at com.konakart.importer.ExportData.getFormattedProductData(Unknown Source)
   at com.konakart.importer.ExportData.getProduct(Unknown Source)
   at com.konakart.importer.ExportController.processDataFile(Unknown Source)
   at com.konakart.importer.ExportController.doExport(Unknown Source)
   at com.konakart.importer.ExportRunner.main(Unknown Source)

20
Configuration of KonaKart / Re: Quick Search
March 26, 2008, 02:18:47 pm
Worked like a charm. Many thanks...

--Nick
21
Configuration of KonaKart / Quick Search
March 26, 2008, 01:45:31 pm
Hello,

I would like for the quick search mechanism to include the product description field in its normal default search functionality. I plan to not include the advanced search in my application at all. I analyzed the Advanced Search form and then added the following hidden field (see below) to the Quick Search form and it did not have the desired effect. Is there a way to achieve this? It certainly seems to me that searches should include the description fields by default. Many thanks in advance for any info on this.

<input  name="searchInDescription" type="hidden" value="on">

Regards,
Nick Kelischek
22
Much appreciated....

I dropped the schema and created the db again from scratch using only the konakart_demo.sql file.  I am still having problems getting emails to work though. I have the debug flag turned on. Where can I see the debug output?

Regards,
Nick
23
Indeed, they were doubled (embarrassed).  Thanks.  It makes me worry a bit about the sql scripts I ran to populate the db. I am running on OSX so i had to run konakart_demo.sql and then konakart_suppelmentary_demo.sql.  Is this the correct way to populate a fresh MySQL database manually?  The supplementary file had duplicate 'alter table' statements for the custom fields that I had to remove.

Regards,
Nick
24
I am having trouble configuring my email settings in the admin app. It seems odd that the entry fields pertaining to the smtp server in the email options panel are all doubled. Has anyone experienced this? I looked at the database records in the 'configuration' table and they are not doubled there.  In email options panel I have the 'KonaKart mail properties filename' field blank. BTW, I am running the 2.2.2.0 version.

Many Thanks,
Nick
25
Since KonaKart is a J2EE application, why is it not possible to deploy it through the use of a .war file?  This would make installation much easier on OSX (or another OS) that already has a J2EE container setup and running. I realize that the database would have to be set up in a separate step.  I need to separate KonaKart from Tomcat so that I can install it on an already established production tomcat installation.  Any ideas about .war files and what I am trying to accomplish?

Many Thanks!