• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 26, 2024, 06:52:09 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 - ryan

271
Hi,

I can't think of a workaround for what you are trying to achieve. We'll add some custom fields to the order_products table for a future release.

-Ryan
272
Hi Mirko,

What you could try is to define multiple form beans in struts-config.xml with different names. i.e.

      <form-bean name="AddToCartForm1" type="com.konakart.forms.AddToCartForm">
      </form-bean>
      <form-bean name="AddToCartForm2" type="com.konakart.forms.AddToCartForm">
      </form-bean>
      <form-bean name="AddToCartForm3" type="com.konakart.forms.AddToCartForm">
      </form-bean>

Then in your action-mappings you use AddToCartForm1, AddToCartForm2, AddToCartForm3 etc.

Ciao,

Ryan
273
Hi David,

Maybe you can do it with a custom payment module. It can get the customerId from the order and return a response based on that. The order has a paymentMethod attribute which normally contains a string defining the payment gateway used as well as custom fields that can be used to save custom data.

-Ryan
274
Hi Anni,

Yes, Digital Downloads do work if the order is mixed.

-Ryan
275
Hi,

Another approach could be for you to process the order using the admin app and add the license(s) as a comment which will be saved as an order  history record. If you change the state of the order at that point, the user will automatically receive an email with this information and this information will remain attached to the order.

-Ryan
276
Miscellaneous / Re: Documentation of KonaKart
November 30, 2007, 03:47:11 pm
Hi David,

Good for you for trying a few combinations to try to work it out for yourself :-)   I'm glad to see you got there in the end... and by the way you got it absolutely right.

You're right; we could improve the javadoc.   We have recently dramatically-improved the application javadoc and we are about to do the same for the admin api.

You should see this improved javadoc on the site in the next two weeks.

Until then, if you find you are struggling because you don't know how to use the API, please ask the questions on the forum.   This not only helps you get your work done quicker, but it is also a good way to remind us to complete the javadoc to a higher standard  :)


FYI, we define a constant for "NOT_SET" for values in search objects all over the API.  You may wish to use this constant?


package com.konakartadmin.bl;

/**
* This is where all the constants are defined that are used in the konakartAdmin app
*/
public class KonakartAdminConstants
{
    /**
     * "Not Set" indicator for integers
     */
    public static final int NOT_SET = -1;


Cheers,
Ryan
277
Hi,

I have just replicated your set-up as closely as I can - I installed KonaKart to
C:\Konakart1\webapps\konakart

... and set the server.xml exactly as you have.

I have no problems operating KonaKart with the newly defined context path.

I didn't change anything after installlation except the server.xml.

Have you changed something else?

Which version are you using?

How did you install?  Using the GUI-driven installer or manually from a zip file?

Are you using the defaut single-page checkout?

Have you enabled SSL?

Cheers,
Ryan