• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 15, 2024, 01:51:41 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 - xzistance

1
Hey guys-

We recently upgraded our Konakart to the latest version and are getting a bug when trying to print an Order Invoice and Packing Slip.

On the printed page it just shows:

[object HTML TableElement]


Are you guys having that problem at all or is there a place you can point me in the right direction to fix?
Thanks,
Andy
2
Hey guys-

So I've been playing around with this for a while now and just can't seem to figure it out.
Basically, sometimes if KK errors, I can get it to use an errorPage I have setup, which emails me a report of the error and forwards the page to a 500 friendly page. Other times, mainly when there is an exception in the Action classes (I believe), KK forwards the error to the ExceptionSummary.jsp page, which displays the error on whatever page the error occurred.

The problem I'm having is, I can't see that message in the server logs and I haven't been able to figure out how to configure ExceptionSummary.jsp to email me a copy of the error.

The main reason I need this is because I'm setting up the Google Checkout Merchant Calculations API and Google Checkout sends a request to the action class I have created to handle merchant calculations. Well, I know there is some error being thrown from this call: kkAppEng.getOrderMgr().createShippingQuotes();

But I can't see it. Because Google Checkout sends a request, there's no real page for it to display on, and no log messages show up.

Any ideas or help?
3
So, I'm working on implementing Google Checkout, which has a Notification API that sends an XML string to a URL I specify to handle. So, a customer would go through the site and add the products they want to their cart, and then instead of doing the normal KK checkout, they'd hit the Google Checkout button which sends them off to Google with their cart info. They complete the order via Google.

When the order has been placed on Google, they send a new order notification to the URL I mentioned above.
I'm working on parsing that XML and creating a new order in KK so Google Checkout orders are still trackable in the KK system.

I've made pretty good progress, but am hitting a snag with the sessionId when trying to snag. Basically, it requires a session, and the session has to be a valid session in order for the order to save, using kkAppEng.getOrderMgr().saveOrder(/*send email?*/false);

Is there a way to get around this session issue or maybe a different way to save the order? I'm trying to avoid doing manual SQL queries to insert the order and its info..

Thanks for your help in advance,
Andy
4
Programming of KonaKart / Setting up redirects
December 22, 2008, 06:54:26 pm
Hey everyone-

I'm trying to figure out where and how in the main KK struts definitions I can setup redirects. For example, the KK app I'm developing for a client needs to handle old URLs and then forward to its new appropriate KK URL.

So, for example, most of the old URLs use the URL:
index.asp?PageAction=xxxetcxxx

I'm just trying to set up a simple example of putting in a wild card where the app catches every URL attempt to /index.asp and has some class handle it and forward.

Can anyone help me get started/point me in the right direction? I'm pretty new to struts and have been researching and doing some trial-and-error tests, but no luck thus far.

Thanks a lot in advance!
5
Programming of KonaKart / Admin Custom Panel headers
December 16, 2008, 12:10:23 am
Hey everyone-

I'm trying to rename the custom panel names, on both the left-hand navigation and where it says 'Custom1 Header' once you click on one.

Can someone point me in the right direction?

Thanks in advance!
6
Configuration of KonaKart / Admin order editing
December 10, 2008, 11:00:05 pm
Hey Guys-

I'm trying to verify a few questions I'm having about the KonaKart Admin side of the application.

Can you edit an order's items after it's been purchased? A client of ours needs the ability to add/remove items and/or change item quantities. Is this possible other than creating a Custom Panel page?

Is there a built-in way via the UI to manage the order statuses? I know they're in the database and that's easily editable, but I'm wondering if this functionality is possible via the current UI.

There doesn't seem to be a specific field for a tracking number once an order is shipped. I'm surprised this didn't make the application. I think we'll be able to get around it by putting something like: "Tracking Number: 1234567890" in to the comments field. I think it'd be a pretty useful addition, however.

Thanks for your help in advance!