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

16
Programming of KonaKart / One page checkout error
January 16, 2015, 11:13:04 pm
Hi,

When I click on "Repeat" in my orders, it first shows the message "We're sorry but unfortunately there has been a problem processing your order." for a second and then shows the actual order details. Below is the code in CatalogCheckoutOnePageBody.jsp which shows this error message.

<div id="error-dialog" title="<kk:msg  key="one.page.checkout.problem.title"/>" class="content-area rounded-corners">
             <div>
               <div class="form-section">
                  <div class="form-section-title no-margin">
                     <h3><kk:msg  key="one.page.checkout.problem"/></h3>                           
                  </div>
                  <a onclick='closeErrorDialog();' class="button small-rounded-corners">
                     <span ><kk:msg  key="common.close"/></span>
                  </a>                                             
               </div>
             </div>
          </div>


I am not getting why this is happening.
Can somebody please help me to fix it?

Thanks in advance.
17
Configuration of KonaKart / Birtviewer reporting issue
September 24, 2014, 12:16:30 am
Hi,

    I am unable to see birtviewer reports in the admin portal. It says "No Access Permitted" and in the logs: "WARN  (?:__authenticate:?) ClassNotFoundException: not found"

    I read the the docs about the report. I have updated the path in the 'konakart.rptlibrary' as well and also modified the config.

   I am not able to figure out what the config issue is about.

    Can anybody please guide me on this?

   Thanks in advance.
18
Thank you so much for the quick response!! It worked :)
19
Hi,

    I want to customize 'Orders' section in the admin app. Currently it shows order no, address, products, status etc. I have set some values to the custom fields in the orders table. I want to show them along with tracking number etc.  in the 'Edit order' in the admin app.
    I read the documentation regarding adding a panel in admin app. But I did not understand it completely and I am not sure if my requirement can be fulfilled using that.

    Can anybody please guide me on how to do it/ where to start from?

   Thanks in advance.
20
One more thing, 'Images' tab in the 'Edit product' menu shows image path at the bottom.
e.g. /prod/2/7/B/E/
But it does not get created on the server.

And also, I don't understand how that path is generated. Whether it is random or something else.

Thank you.
21
Hi,

I am using community version of konakart 7.2.0.0.  I have deployed it on the remote server.

I am trying to add a new product using admin portal. But when I upload an image, it does not work.
I have set the config as:
Image base URL: http://xyz.no.me:8080/konakart/images/
Image base path: /Users/abc/installed_software/konakart/webapps/konakart/images

When I select an image and click on upload, it shows at the bottom "uploading" and upload starts , but at the end nothing happens and image does not get uploaded, while the same thing works on my local machine.

Am I missing something here or is there any issue with the paths?
Please help me.

Thanks in advance.


22
Hi,

I want to remove '/konakart' from URL as store front is going to be my website for users.

One thing I have done is to add redirectfilter jar  and have replaced 'konakart' from all the paths in configuration->Images in the admin portal with my storename, lets say 'xyz'.
So I have changed store-front base from /konakart to /xyz and storefront image base from /konakart/images to /xyz/images and the same applies to rest of them.
Also, I have renamed konakart folder in webapps with 'xyz'.

Store front is working fine on localhost.
Just want to confirm that can there be any issue because of this renaming.

Thanks in advance.
23
I have already read that doc. I want to make UI as well as the changes in registration/checkout and some other pages. I have copied my 'kkeclipse' folder to a different path (as mentioned in the link I entered in my question) and have imported in eclipse from there.

My question is if I make changes in eclipse , how do I build that code and reflect those changes in storefront as 'kkeclipse' is at a different path.

Thanks.
24
Programming of KonaKart / Re: DB table for addresses
April 13, 2014, 10:57:02 pm
Thanks a lot for your reply.
25
Hi,

I have imported the KonaKart store front project in eclipse with reference to the link: http://www.konakart.com/docs/CustomizableSourceCode.html.

I want to know how to build the konakart code with the changes made in eclipse i.e. how to reflect the changes in storefront.

Please help me.

Thanks in advance.
26
Programming of KonaKart / Re: DB table for addresses
April 05, 2014, 11:31:31 pm
Can anyone please help me? I am stuck .

Thanks.
27
Programming of KonaKart / Re: DB table for addresses
April 03, 2014, 08:16:02 pm
I want to add a validation for postal codes. Currently we are restricting the delivery of our product in certain areas only. Hence I need to check whether the entered post code in shipping address is one among the covered areas only.

Do I need to add a custom table for that? How custom tables are accessed as the database layer is abstracted in Konakart.

Thank you.
28
Hi,

I am using community version 7.2 of Konakart. I have made changes in some JSP files and also in some Java classes like AddressValidationAction  in eclipse. If I want to reflect those changes in konakart storefront, how do I do that?
It will be very helpful to have a step-by-step guide or a example of this.

Thanks in advance.
29
Programming of KonaKart / DB table for addresses
April 03, 2014, 08:03:59 pm
Hi,

I would like to know where is the billing address gets stored. I know that shipping address gets stored in the "address_book" table. And also, Is there a way to know which table serves what purpose as there is no description added in the table definitions. Sometimes, its a bit confusing as there are too many tables.

I also checked that there are no foreign constraints. Is there any specific reason behind it?

Thanks in advance.
30
Programming of KonaKart / Re: Database documentaion
March 29, 2014, 02:47:03 am
Sorry for not including this in the previous post.

I also would want to know the purpose of sort order.
e.g. In categories table, there are many subcategories with sort order 0 and some of them are assigned a number which is not even in the sequence.

It might be a very basic question, but since I do not have any other help, I find this the best place to ask.

Thank you for being patient with me.