• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 05, 2024, 08:46:05 pm

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 - pawlorj

1
I know this post is over 2 years old, but I thought this might help someone else.

Here is the way that passwords are stored in the customers table in Konakart (and oscommerce):

bb2c19e53d9603b7750ab18edb8f632b:8f

The hex string before the ':' is the md5 hash of the plain text password pre-pended by the two random characters after the colon.

So if the plain text password is 'password' (without the quotes), you should run '8fpassword' through your md5 hash generator.  It will return:

bb2c19e53d9603b7750ab18edb8f632b
2
What kind of encryption is used in the setCreditCardDetailsOnOrder method?   Is the encryption/decryption key based?  If so, is the value of the key configurable or hard coded?  Is storing credit card info with setCreditCardDetailsOnOrder PCI compliant?

Thanks,

Bob
3
If you check out without an account, you will be taken to a page that asks for delivery information.  The problem is that after typing in the state/province, and then selecting "United States" as the country, the state province gets overwritten as "Alabama".  I went to fix this problem in the HTML code and found that the form wasn't readily accessible in OnePageCheckoutBody.jsp.  The following tag is empty:

<div id="kk-OnePageCheckout"></div>

When it is rendered in a browser, the address entry form gets inserted in the tag above.  What is inserting this HTML?  It looks like GWT is being used? How do I alter the code to change the order of the fields and fix the country / state bug?  Note that entering an address during user signup does not have this problem.

Thanks,

Bob
4
I am using Konakart version 3.2.0.0.
5
Hello,

I am using "Enables Checkout Without Registration".   When a returning customer clicks "My Account"  He gets the login screen with the following message:

"I am a returning customer. If you have already shopped at our store but never registered, please click on the Password Forgotten link below and we'll send you a password."

When the customer requests a new password, he gets the following message, even though he is in the system (viewed through konakart admin app) and has previously completed an order:

"The E-Mail Address was not found in our records, please try again"

The customer has no way of registering.  Is there a workaround for this?   It seems that the code that sends the email is not open source:

            kkAppEng.getCustomerMgr().sendNewPassword(localForm.getEmailAddr());

Thanks,

Bob
6
Hello,

I'm trying to send an email with a velocity template through the
Customer Communications screen.  Is it documented anywhere what
variables are available for use?  For example, I'm able to use $cust,
but $storeName does not get translated.  $storeName works for the
welcome email sent from the konakart app, but it does not work from the
konakart admin app.  Also, how do I get the text in "Text to merge with
template" to get merged into the email?   I tried using $message, but it
doesn't work.  Here is an excerpt from my velocity template:

message: $message
storeOwner: $storeOwner;
storeName: $storeName
storeOwnerEmailAddr: $storeOwnerEmailAddr


None of these fields get mapped properly, but

Dear $cust.getFirstName() $cust.getLastName() ,

gets mapped fine.

Thanks,

Bob