• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 20, 2024, 06:51:35 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 - pooja

1
Hi,

    I am using a community version of Konakart 7.4 .
I want to add some custom configuration in the admin portal. I referred to the documentation section :

Adding Custom Configuration Panel
A "User Defined" panel is available to use for maintaining custom or user defined configuration parameters that are specific to your own store system.
All you need to do is to insert configuration parameters into the configurations table in your KonaKart database in configuration group 31 and they will appear automatically on the User Defined Configurations panel of the Administration Application
.

I added some rows in the 'configuration' table as:
INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('title', 'key', 'true', 'description', '31', '10', 'tep_cfg_select_option(array(\'true\', \'false\'), ', now());

I restarted the server. However could not find this config in the admin portal. Can anybody please tell me if I make any more changes or where to check this config?

Also, would like to know the difference between 'tep_cfg_select_option(array(\'true\', \'false\')' and 'choice(\'true\', \'false\')'.

Thank you in advance.
2
Hi,

   I am using community 7.4 version of konakart. First of all , congratulations to the Konakart team for this release.

  I  want to add a filter in the orders section in admin portal. Basically I need to filter orders based on their delivery dates as we let customers select their delivery dates. I need to either add a column as delivery date or add a filter above it.

    Is this doable? If yes, can anybody please share some guidelines.

Thank you in advance.
3
Programming of KonaKart / Custom merchandising
May 14, 2015, 03:58:46 pm
Hi,

    I have checked 'Merchandising' in the products section . It contains product-to-product relationships.
However, I have a requirement in which I need to add products which cannot be bought independently. Something else needs to be bought along with it. e.g. If I have 'French fries' as a product, a customer should not be able to buy only french fries. He needs to buy a burger/sandwich with it.

    Can anybody guide me how this can be achieved programmatically/using existing konakart features? Also, how a custom relationship can be defined for merchandising?

  Thank you in advance.

   
4
Programming of KonaKart / How to handle transaction
April 27, 2015, 04:54:15 am
Hi,

     I have a requirement of bulk edit of products in the cart. So basically I need to update/remove products from cart within a single call. What I am doing is I am using the code  in 'EditCartSubmitAction' in a loop to accomplish my task.
     The issue is - if there are 3 products - two needs to be updated and last one needs to be removed and if we get an exception  after updating quantity of first two products. Now the last one will not get removed , but other 2 quantities have been already updated. This will lead to inconsistent state of the cart from customer's point of view. So this whole process needs to be in a transaction.
     Since we cannot access DAO layer, can anyone please help/guide me to handle this issue?

Thank you in advance.
5
Configuration of KonaKart / Setting shipping rate
March 25, 2015, 03:43:30 am
Hi,

I want to set a shipping rate to 'X' only if order total is less than 150. Otherwise shipping should be free. I know that I can achieve free shipping above 150 by configuring 'shipping' in 'Order Totals' module in admin portal and that works fine.
      But if order total is less than 150, it gives an error in validateOrderTotals() that no shipping module found. Where can I set 'X' amount for order total less than 150?
Requesting for a guideline.

Thanks in advance.
6
Contributions / Payu module - Need to be checked
March 02, 2015, 05:02:53 am
Hi,

I have integrated a payment module viz. Payu. Its a Browser_payment_gateway. So I pass required information along with 'sessionId' as one of the custom parameters in the request and I get it back in the response from Payu. When a user  gets redirected from payu to my site, I want to show an order confirmation message depending on the status. That's why I am passing sessionId to maintain a user session.
    However, many times I get a failure and user gets redirected to the login page , sometimes it fails in checkSession(), sometimes in loginBySession or after that. I am not able to understand what is going wrong here.
    So I had posted a question and I was asked to share the module to test it. (Reference: http://www.konakart.com/forum/index.php/topic,1995.msg7650.html#msg7650)

Can anybody please help/guide me with this issue? I am stuck. Badly need some help.
Thank you in advance.
7
Hi,

I have added a new payment module which is BROWSER_PAYMENT_GATEWAY. I redirect to their site and pass 'sessionId' in the custom parameters. After processing payment, when it gets redirected to my site, it passes that sessionId in the response which I use for maintaining a user session and show him a confirmation message.
     Sometimes it works. But many times it fails without any exception and no message is shown. Instead customer sees login screen. Below is the code which I have added to the execute method in my action :
{
       String sessionId = null;
        KKAppEng kkAppEng = null;
        try {
            if (request == null){
               return KKLOGIN;
            }
            sessionId = request.getParameter(someAction.CUSTOM);
            if (sessionId == null){
                return KKLOGIN;
            }
            // Get an instance of the KonaKart engine
            kkAppEng = this.getKKAppEng(request, response);

            /*
             * Use the session of the logged in user to initialize kkAppEng
             */
            try            {
                kkAppEng.getEng().checkSession(sessionId);
            } catch (KKException e){
                return KKLOGIN;
            }
            // Log in the user
            kkAppEng.getCustomerMgr().loginBySession(sessionId);
           
         // Check that order is there and valid
                  OrderIf checkoutOrder = kkAppEng.getOrderMgr().getCheckoutOrder();
                  if (checkoutOrder == null) {
                     return "Checkout";
                  }
}

I am facing an issue from a long time. Also 'checkSession' code cannot be checked.  Once sessionId parameter was received as null which per my understanding should not happen.

I badly need help here. Can anybody please help me on this? I am not getting which step is going wrong .
Requesting for a guideline.
Thanks in advance.
8
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.
9
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.
10
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.
11
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.


12
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.
13
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.
14
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.
15
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.
16
Programming of KonaKart / Database documentaion
March 29, 2014, 02:14:23 am
Hi,

I am a newbie to konakart. I am finding a bit difficult to understand the purpose of some of the tables.

Can you please let me know if there is any documentation regarding that or any description for all the tables so that it will be really helpful to understand the whole schema?

Thanks in advance.
17
Hi,

I ran 'ant make_eclipse_wizard_project' inside custom folder of Konakart installation. But it just shows Build successful and no folder gets created.

I checked build.xml which contains:
<target name="make_eclipse_wizard_project"
                        description="Create an Eclipse Project for Developing the Product Creation Wizard"
                        if="konakartadmin_app.code.present">

I think the problem is because of 'if' attribute.

Please let me know what should I do to create Product Creation Wizard in Eclipse.

Thanks in advance.