• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 05, 2024, 03:52:02 am

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.

Topics - tomtom

1
I'm trying to upgrade my konakart version [konakart.version = 2.2.1.0] to the latest version [konakart.version = 3.2.0.0] and
was wondering if someone can pin point how to fix this error that i attach on this topic.

On mysql database, i inserted this query just on the products tables:
INSERT INTO `products` VALUES (1,6,' ','zakkaImagesProducts/TDogCardWhite525.jpg','16.9900','2007-12-30 01:38:25','2008-04-13 03:17:29','2007-12-30 01:38:25','0.00',1,1,4,0,'',NULL,NULL,NULL,NULL,0,'',0,NULL,NULL,'zakkaImagesProducts/TDogCardDisplay.jpg','zakkaImagesProducts/TDogCardBox525.jpg','');

Did the products table change?
Thanks for the info.
2
Just wondering if someone can give me some pointer why i get this error on the birtviewer widget?

The connection to the mysql db is correct in this file:
/home/joyce888/www/konakartadmin/WEB-INF/classes/konakartadmin.properties
since i was able to access the http://www.site.com/konakartadmin site as well as the http://www.site.com/konakart site successfully.

I'm still trying to figure out what causes the error below to happen which cause the "My Store Status" Status Page Report URL graph to be broken ?
Any pointer on this ?
i'm using konakart.version    = 3.2.0.0
konakart.build.date = 9:06PM 1-Feb-2009 GMT

and i did not install the konakart software automatically,
I use the manual process way where i copy the successful installation of the konakart software from my local host to the hosting company host manually by copy these directories below  to the hosting company webapp dir path:
joyce888@site.com [~/www]# pwd
/home/joyce888/www
joyce888@site.com [~/www]# ls -lart
total 396
drwxr-xr-x 10 joyce888 joyce888   4096 Mar 12 20:55 birtviewer/
drwxr-xr-x 10 joyce888 joyce888   4096 Mar 12 21:04 konakart/
drwxr-xr-x  4 joyce888 joyce888   4096 Mar 12 21:10 konakartadmin/

I attach the error that i'm seeing here as well.
3
Hi,
   I read this forum:
http://www.konakart.com/forum/index.php/topic,40.0.html

where the user wanted to add the quantity to the product detail page.

I wanted to make the same changes as well on the detail page where you be
able  to add # of quantity to the cart on the detail page.

On the konakart/custom/appn/src/com/konakart/forms/AddToCartForm.java, i added this piece of code below:
=======================================================
....
....
private int productQuantity = 0;
......
/**
     * @return Returns the productQuantity.
     * TomChanges
     */
    public int getProductQuantity()
    {
        return productQuantity;
    }

    /**
     * @param productQuantity The productQuantity to set.
     * TomChanges
     */
    public void setProductQuantity(int productQuantity)
    {
        this.productQuantity = productQuantity;
    }
.......
=======================================================

On the konakart/custom/appn/src/com/konakart/actions/AddToCartSubmitAction.java, i added this piece of code:

=======================================================
............
AddToCartForm acf = (AddToCartForm) form;
............ 
BasketIf b = new Basket();
  // This is the default code where item was set to 1 always.
//b.setQuantity(1); 
  b.setQuantity(acf.getProductQuantity());
..........
=======================================================

I build this 2 file and it created a "konakart_custom.jar" where i added it on my tomcat server at this path:
../www/konakart/WEB-INF/lib/konakart_custom.jar

Then i start my server and somehow i got this error in konakart:
Any idea how to resolve this error below ?
Maybe i'm missing some step here. ;D
=============================
HTTP Status 404 - Servlet action is not available

type Status report

message Servlet action is not available

description The requested resource (Servlet action is not available) is not available.
Apache Tomcat/5.5.15

=============================


My jsp [ProductDetailsBody.jsp] look like this:

<html:hidden name = "AddToCartForm" property="productQuantity" value="2"></html:hidden>

Thanks again for your help on this. Appreciate your expertise  ;D
4
Hi,
    Can someone please give me some pointer on what i need to do in
order to use google checkout html api integrated into konakart ?  ;D

I believe the actual  google checkout html api form posting will need to happen at
this page:

http://domain/konakart/CheckoutDelivery.do

I assume that i will need to pass whatever info i have at the CheckoutDelivery.do
page as hidden form fields to google when the customer click on the google checkout button.

I took a look at google doc for html api version: http://code.google.com/apis/checkout/developer/google_checkout_html_api.html#integration_overview

and i presume i need to add a form posting integrated to CheckoutDelivery.do page.

==============================
<form method="POST" action="https://sandbox.google.com/checkout/cws/v2/Merchant/1234567890/checkoutForm"; accept-charset="utf-8">

  <input type="hidden" name="item_name_1" value="Peanut Butter"/>
  <input type="hidden" name="item_description_1" value="Chunky peanut butter."/>
  <input type="hidden" name="item_quantity_1" value="1"/>
  <input type="hidden" name="item_price_1" value="3.99"/>

  <input type="hidden" name="ship_method_name_1" value="UPS Ground"/>
  <input type="hidden" name="ship_method_price_1" value="10.99"/>

  <input type="hidden" name="tax_rate" value="0.0875"/>
  <input type="hidden" name="tax_us_state" value="NY"/>

  <input type="hidden" name="_charset_"/>

  <input type="image" name="Google Checkout" alt="Fast checkout through Google"
src="http://sandbox.google.com/checkout/buttons/checkout.gif?merchant_id=1234567890&w=180&h=46&style=white&variant=text&loc=en_US";
height="46" width="180"/>

</form>
==============================

If this is true, can someone please give me some starting pointer on what i need to change ?
I presume i need to make some jsp file changes and some config file changes but before i start to implement it base on my understanding, i like to get some expert advice first before i start.

I do appreciate your help and expertise guidance on this.  ;D
Thanks again for your help on this   ;D


tomtom :P
5
Hi,
Can someone share some light on how i can install konakart on dailyrazor hosting company.
I'm currently using their RazorAdvance hosting plan where they provide a java private tomcat for me.
That mean that i have my own personal tomcat. meow  :-* :-*

http://www.dailyrazor.com/java/private_tomcat.php

Since i don't have the ability to use the konakart gui installation version, i decided to use the silent version.
Before i start the installation on razor hosting, i initially install konakart on my personal linux machine using the silent version method.
I notice after the installation, konakart uses it's own tomcat.

If i use the tomcat server given by my hosting company, how do i integrate konakart into it.

Please help ? Thanks :- ) 

I try running the silent konakart version  and i got errors on their machine:

[joyce520@dz18 cartSoftware]$ ./KonaKart-2.2.1.0-Linux-Install -S -DDatabaseType mysql -DDatabaseUrl jdbc:mysql://localhost:3306/zakka -DDatabaseUsername jozakka -DDatabasePassword zakka123 -DDatabaseDriver com.mysql.jdbc.Driver -DInstallationDir /home/jozakka/konakart -DDBLoad 1  -DJavaJRE /usr/java/latest/jre -DPortNumber 80
failed to load library "/installkitvfs/lib/itcl/libitcl3.3.so": could not load file from temp location
    while executing
"load /installkitvfs/lib/itcl/libitcl3.3.so Itcl"
    ("package ifneeded" script)
    invoked from within
"package require Itcl"
    (in namespace eval "::" script line 3212)
    invoked from within
"namespace eval $namespace $::InstallJammer::files($file)"
    (procedure "SourceCachedFile" line 3)
    invoked from within
"SourceCachedFile common.tcl"
    (procedure "::InstallJammer::InitInstall" line 8)
    invoked from within
"::InstallJammer::InitInstall"
    (file "/installkitvfs/main.tcl" line 30566)