• Welcome to KonaKart Community Forum. Please login or sign up.
 
February 18, 2026, 05:54:41 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.

Topics - bubba64

21
Feature Requests / Digital Download from Database
February 11, 2009, 12:07:01 am
A fantastic feature would be digital downloads from the database (as opposed to a link to the file system). The information to be downloaded would be stored as a blob. This would allow konakart users to store whatever they need...pdf files/books, graphics, software--and perhaps customize for customers. Even an option to add data/files for the customer before the download link is active.
22
Configuration of KonaKart / Trouble finding graphics
February 01, 2009, 04:31:05 am
I've been changing the graphics on the page, and for the life of me can't find the page to edit a few remaining graphics. What file/jsp contains the information for the graphic in the upper right of the Checkout confirmation page (EditCartSubmit.do -> table_background_confirmation.gif)

I've looked and looked and just missed it. Thanks.
23
Configuration of KonaKart / Tomcat SSL - How to
February 01, 2009, 04:24:53 am
I struggled more than I should have trying to get an SSL certificate installed for HTTPS. So hopefully this will make it easy for anyone else seeking to do so. I bought an SSL certificate from godaddy.com (<$30 for 1 year). Here are the instructions that worked for me.

My Configuration: Tomcat 6.0.18 stand alone web server (your CN name on the certificate MUST match your domain). It is easiest to do all of this on the server you will be running on.

1) Generate your private key (keytool is in your java_home/bin directory):
keytool -genkey -alias tomcat -keyalg RSA

**This will put the key in your .keystore in your home directory (or in Windows--C:\Documents and Settings\<User_name>. Once again, make sure your common name (this is your CN, you are asked for your first and last name) matches your domain you will be using (mydomain.com).

2) Generate the CSR:
keytool -certreq -keyalg RSA -alias tomcat -file your_file_name_here.csr

3) Buy your SSL certficate and you will be asked to copy and paste your CSR.

4) When you have your zip file extracted from GoDaddy, do the following to import the certificate into your keystore (all the .crt files are in the zip file):
   keytool -import -alias root -trustcacerts -file gd_bundle.crt
   keytool -import -alias cross -trustcacerts -file gd_cross_intermediate.crt
   keytool -import -alias intermed -trustcacerts -file gd_intermediate.crt
   keytool -import -alias tomcat -trustcacerts -file www.YourDomain.com.crt

5) Update Server.xml in tomcat\conf folder;
<Connector protocol="org.apache.coyote.http11.Http11Protocol"
  port="443" minSpareThreads="5" maxSpareThreads="75"
  enableLookups="true" disableUploadTimeout="true"
  acceptCount="100" maxThreads="200"
  scheme="https" secure="true" SSLEnabled="true"
  keystoreFile="c:\documents and settings\<user>\.keystore" or wherever you copy it to
  keystorePass="<whatever password you chose when creating your key in the beginning"
  clientAuth="false" sslProtocol="TLS"/>

It was a breeze once I followed these instructions. Make sure you change your HTTPS options in your konakartadmin to match the same port (in my example 443).

Good luck!
24
Configuration of KonaKart / Free Digital Downloads
January 13, 2009, 12:30:52 am
We have added some free stuff to our site along side purchased products to encourage traffic to the site (PDF downloads). I have the digital downloads configured and the product cost is $0.00.

(1) Is there an easy way to bypass the credit card or payment step when the order value is $0? Right now it gives an error because the order value is $0.

(2) I have the free product listed as a product, I don't want to simply provide a link on a page to download because I want the customer to register like they are buying a real product (I can then merchandise and cross sell, and add the customer to my mailing list). I like to see the digital download appear in their 'myaccount', but with no cost.

Any ideas....?
25
I see how the ShowAllSpecials page shows any products with a current price special, but it does not show promotions. Is there a way to allow promotions to appear on the ShowAllSpecials page?

Thank you.
26
Configuration of KonaKart / Configure New Products
December 30, 2008, 11:42:34 pm
What would be the best way to configure which new products I want displayed in the Random tile and the ShowAllNewProds.jsp page? The application seems to show all products ordered by the date they were added.
(1) Can I set a cut-off date (ie only new products in the last 12 months)?
(2) I only want to show new products from select manufacturers (yes, I know this is weird), how? I'm guessing I need to change the query that is run to exclude certain manufacturers.

Thank you.
27
I've looked through the message properties and also many of the db tables. Where can I change the description under payment methods and shipping methods? For example, I would like to change the descriptions:

Authorize.net -> Visa/MC
Flat Rate -> USPS shipping
Best Way -> Media Mail

etc etc

Just need some help on which jsp or table to work with. Thank you.
28
My settings on XP pro using MYSQL 5.067 running on my local machine using Apache to forward all requests to tomcat (ajp working properly):

Image base URL: http://localhost/myweb/images
Image base Path: C:\websites\myweb\images
Image Path: \

When uploading the selected image I constantly get theh error:
"There has been a problem with the upload <PRE> 'path to image' (access denied) <PRE>"

I have changed the image directories, even started file sharing on the directory to try and get around this error with no success. Any suggestions on how to get around this? Thank you!