• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 10, 2024, 04:27:37 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.

Topics - dnlsmns

1
createCheckoutOrder() seems to be returning a valid OrderIf object when the current logged in user is the super user.  When a different user is logged in it returns null.  Is there some other condition that I'm overlooking here?
2
I am noticing a strange result when attempting to return all products from the server, where in some cases the limit is being set to zero.  Here is my code:

            KKAppEng appEng = getAppEng();
            appEng.getProductMgr().fetchNewProductsArray(ProductMgr.DONT_INCLUDE, /* fetchDescription */
                   true);
            ProductIf[] products = appEng.getProductMgr().getNewProducts();

With debug mode turned on the query that is problematic ends with: DESC LIMIT 0

And the query that returns the correct result ends with: DESC LIMIT 9

NOTE: I currently have 9 products total. 

Could there be something wrong with my initialization process?  Is there a better way to get all products?
3
I am in the process of hooking up my konakart project to a payment module. I am a bit confused about how this is going to work, and not sure whether my questions should be addressed to you guys or the payment module provider (in this case Bluepay).

1) In what format should I be sending them the data?

2) Looking at the "Bluepay extends BasePaymentModule" class I see that this is something I will need to use, but I seen no references to it. Is there documentation on how it should be used?
4
Is there a solution to testing whether I am making successful transactions with my Payment Gateway (ie, Bluepay) without using SSL.  NOTE: These are just test transactions.
5
Configuration of KonaKart / Turn On Debugging
August 20, 2010, 03:53:04 am
All the source files in konakart contain (Unknown Source) in Stack Trace.  Also, I cannot set breakpoints in these files.  How do I turn on debug mode ?
6
I would like to redefine the notion of a "manufacturer" in the demo app to be "business".  In other words, my store will be comprised of a set of businesses each of which have 1 or more products.  Just a simple terminology change that I would prefer to be able to change in one spot from the admin app (if possible) rather than having to try a global replace of the string "Manufacturer" in the project.
7
Configuration of KonaKart / How To Remove Shipping ?
August 19, 2010, 04:54:51 pm
My products are not physical items, and there will be no notion of shipping in my store.  How do I remove the shipping feature entirely?