• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 06, 2025, 08:54:14 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 - dnavarro

1

Solution

konakartadmin_gwt.properties
konakartadmin.gwt.engineclass=com.konakartadmin.app.KKAdminCustomEng

:-[

2
Hi,

  I  would like to send a Newsletter with products information like images, price, name.... and just writing their product IDs in the Template Text.

  I have reimplemented the "SendTemplateEmailToCustomers1.java" class to read the "String message" from the Marketing > Client Communications, and then parse it content to write a custom (velocity) template

  Now, I've followed the the Konakart_User_Guide "Modifying an Existing API call", so:


...but my code hasn't been used (doesn't print a simple System.out.println).


What am I forgetting?.

I didn't understand the point "2. Add our customizations to GetCustomerForId.java".  ¿I need to change another class?.


Thanks.


3
Configuration of KonaKart / Re: Turn On Debugging
August 20, 2010, 08:12:07 am
Hi Daniel,

   Look for "konakart-logging.properties" in "konakart\webapps\konakart\WEB-INF\classes".


   Best,

        David Navarro.
4

Hi Daniel,

     Change the text "Manufacturer" by "Business" in:
     "konakart\webapps\konakart\WEB-INF\classes":



     Inside them you can find:

  • advanced.search.body.all.manufacturers=All Manufacturers

  • advanced.search.body.manufacturers=Manufacturers

  • seo.product.manufacturer=manufacturer

  • manufacturer.tile.manufacturerinfo=Manufacturer

  • products.body.all.manufacturers= All Manufacturers

  • search.by.manufacturer.tile.title=Manufacturer[/]



  Best regards,

          David Navarro.



5
Quote from: gmi on August 07, 2010, 08:47:24 am
Hi,

I have just installed the KonaKart Portlet and the KonaKart Admin Portlet for Liferay and I have two questions:

1. Single sign-on is possible for the admin portlet, the configuration for that is explained in the Installation.pdf of KonaKart and I have also done so.

But is it also possible that Liferay users are already logged in automatically in the KonaKart shop with the Liferay login and they not even need to register in the KonaKart shop again and log in again?



Thanks in advance!



1.1 Implement something like
com.isoco.shop.util.ShopingCartLoginHandler


package com.isoco.shop.util;

import org.apache.log4j.Logger;

import com.konakart.app.KKException;
import com.konakart.bl.LoginIntegrationMgrInterface;

/**
* Checks credentials
*
* More information:
* http://www.konakart.com/docs/CustomCredentialChecking.html
*
*/
public class ShopingCartLoginHandler implements LoginIntegrationMgrInterface {

private final Logger log = Logger.getLogger(ShopingCartLoginHandler.class);
    /* (non-Javadoc)
     * @see com.konakart.bl.LoginIntegrationMgrInterface#checkCredentials(java.lang.String, java.lang.String)
     */
   
    /**
     * The checkCredentials() method can return the following values:
     *
     * A negative number in order for the login attempt to fail.
     * The KonaKart login() method will return a null sessionId.
     *
     * Zero, to signal that this method is not implemented.
     * The KonaKart login() method will perform the credential check.
     *
     * A positive number for the login attempt to pass.
     * The KonaKart login() will not check credentials,
     * and will log in the customer, returning a valid session id.
     *
     * @param login
     * @param password
     * @return int
     */
    public int checkCredentials(String arg0, String arg1) throws KKException {
        /**
         * Returns always 1. Liferay will make the work.
         *
         */
    if (log.isDebugEnabled()){
    log.debug("The KonaKart login() will not check credentials, " +
    "and will log in the customer, returning a valid session id.");
    }
   
        return 1;
    }

}



1.1 Goes to konakartadmin:  Setting > Security and ..  > "Login Integration Class" = com.isoco.shop.util.ShopingCartLoginHandler


This is the begining. If your shop uses just one Portlet, may be it will work, if you "portletize" the Konakart actions (i.e. one action, one portlet), then... you will have big big big problems with contexts.



To register a user in Liferay and Konakart at same time you will need:
1. to reimplement   com.liferay.portlet.login.action.CreateAccountAction
to create your new konakart user, and insert the new data.

2. save the Konakart ID in Liferay DB. (I did it in a expando value.)

3. triggers for updates in Liferay, because a user can change his/her personal data, and Konakart must be updated.

4...  Lots of work.




Luck.






6


common.repeat=Repetir
common.highest=El más alto
common.high=alto
common.medium=medio
common.low=bajo
common.lowest=El más bajo
common.total=Total
common.jan=Enero
common.feb=Febrero
common.mar=Marzo
common.apr=Abril
common.may=Mayo
common.jun=Junio
common.jul=Julio
common.aug=Agosto
common.sep=Septiembre
common.oct=Octubre
common.nov=Noviembre
common.dec=Diciembre


9

Hi,

   I've deploy KonaKart on my Liferay 5.2.3 portal, and as  sashwill  I would like to use my portal login as my KonaKart login.

   To do it, I register some users in konakartadmin, and, with the same email and password in Liferay,
and I've configured the LOGIN_INTEGRATION_CLASS with  com.konakart.bl.LoginIntegrationMgr

   When a customer make a login in Liferay, a Hook (a Liferay hook) executes:

KKAppEng kkAppEng = this.getKKAppEng(request, response);   //"this." because this class extends BaseAction
String sessionId = kkAppEng.getCustomerMgr().login(user, password);

but sessionId is always null.

   Is this the correct way to make a login?. (I'm following the "LoginSubmitAction" step by step as login sample).

   
10

Thank you Trevor, the problem is fixed.

I have not working with one Konakart portlet, I have "portletized" each Konakart functionality one by one, and to do it I created new Actions (void actions) for some funtionalities, for example BestSellers or the Tree Categories but I forgot to call "MyNewAction.getKKAppEng(request, response);" to initialize the "konakartKey" property.


Please, be sure I will send a public link to the aplication, and some contributions about "making Konakart portletized" and "working with Liferay and Konakart Contexts".

Thank you for Konakart, good job.

11

Did you check Konakart  (KonaKart-4.2.0.1-Linux-Install) as portlet with "liferay-portal-tomcat-6.0-5.2.3". I'm working with MySQL-server-community-5.4.1-0 ?.

Do you know how "konakartKey" is used?, or can you point me to some documentation about it?.


Thanks again.

  David.
12

Have you ever seen this error before in Konakart as portlet?.

I have been looking for informatation related to the problem and the most frecuent reply is about "automatic versus manual instalation", but that is not my case. I installed Konakart with next steps:


  • ./bin/ant make_liferay_portlet_war

  • ./bin/ant make_admin_liferay_portlet_war -Djbossliferay=true

  • Change  "dbname" in : dbname?zeroDateTimeBehavior=convertToNull   with my  database name

  • Check configuration in konakartadmin to setup paths

  • and... to install as a portlet in Liferay





  David.


13
Hi trevor,

   Not yet, I'm sorry.


   Could be the problem related to cookies?.


   Thanks,

     David.


   
14
Hello,

  I have working Konakart (4.2.0.0) as a Portlet in Liferay (5.2.3) and works quite well, but always always always in the his/her first visit reads
"javax.servlet.jsp.JspException: Cannot find bean konakartKey in any scope".

  If they press refresh everythings works fine.

  Any idea?.


  Thanks.

      David.



 
15

Thank you very much Julie !


David.