• Welcome to KonaKart Community Forum. Please login or sign up.
 
January 25, 2026, 11:41:59 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.

Messages - ReneA

16
Programming of KonaKart / New payment module
August 24, 2008, 09:39:31 pm
Dear Konakarts,

I'm developing a new payment module for EnterPayment (www.enterpayment.de). I have read the instructions and managed to copy and setup the new modules.

However, EnterPayment requires distinct first name and last name to be passed on in the request. Now, I've seen that the modules Authorizenet does a split of the BillingName using the space as a terminator. This can be a solution but can also lead to wrong results when there are more spaces within the name.
The same is for State and Country.

My question is: is it possible to extend PaymentDetails to include FirstName and LastName as well as State and Country ?

Another possible approach could be to get the order.BillingAddrId, retrieve the Addr and composing the required string to pass on to EnterPayment. However, I could not find an api to retrieve an Addr and passing an id.
17
Hi Konakarts,

I had the same problem. I changed DB settings in build.properties but received a DB connect error. After I changed the DB settings in konakart.properties in directory custom\onepagecheckout\src I could see the screen in hosted mode.
I didn't use the installer since I already had an installed Tomcat. So I created a war-file and deployed that war file into the already installed Tomcat.
19
Programming of KonaKart / Location of product images
April 13, 2008, 06:43:25 pm
Hi,

We are in the process of customising Konakart to our needs. I managed to bring Konakart into an Eclipse development environment. So, now I can change the code, export to a war file and deploy it to Tomcat.

The product images are stored as part of the application structure. So, all product images are also in the war file which results in a rather large size of that war file. Also, it prevents that one person maintains the images by means of the admin application and another person takes care of development.

The solution is to create a separate directory in Tomcat's webapps directory and to change each reference to a product image in the jsp's, i.e. the ProductsBody.jsp:

change
<img src="images/<%=prod.getImage()%>" ......
into
<img src="/images/<%=prod.getImage()%>" ......

Rene