• Welcome to KonaKart Community Forum. Please login or sign up.
 

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 - andrea.castelli

1
I'm testing the new KK 6.5.1 on IE10 and the My Store Status panel does not load the chart.

The errors are the following:

HTML1527: DOCTYPE expected. The shortest valid doctype is "<!DOCTYPE html>".
konakartadmin, line 1 character 1
SCRIPT5007: Unable to set property 'overflowX' of undefined or null reference
AbstractBaseReportDocument.js, line 171 character 5
SCRIPT5007: Unable to get property '__init_page_all' of undefined or null reference
run, line 519 character 4

How can I fix this problem?

Andrea
2
Hi everybody,
my shop is successfully running KK 5.2. The admin interface works fine.

But now My Store Status doesn't load the chart "Orders in last 12 Months" in the KK administration in IE10. The problem is only in IE10 .

Is there a way to solve this issue?
Does it work in the latest version of KK?

Thank you guys.
Andrea Castelli
3
Hi everybody,
  I have a question about the order details panel in the administration interface.
The email displayed  contains a reference to /admin/[customeremail@xxx.xxx]. If a click on it a 404 error is returned.

How can I make it works?
Is there a configuration option to set?

Thank you.
Best regards.

Andrea Castelli
4
Hi,
I think that I found a bug in the mechanism of mail combined with orders and localization.

The scenario is the following(Community Edition 5.5):

1. An order is completed in a language different from the Admin App.
2. The administrator changes the status of the order.
3. Konakart sends the orderStatusChange_(locale).vm
4. In this email: 
    #foreach( $osh in $order.getStatusTrail() )
           $osh.getOrderStatus()
    prints the  status  in the language of the admin app


Questions:

1. Did someone else report the same behaviour?
2. Did someone else report the same behaviour in 6.0?
3. Is there a workaround?

Thank you very much.
Best regards.

Andrea Castelli
5
Programming of KonaKart / base price plus selected option
February 09, 2012, 04:27:42 pm
Hi everybody,
I need  to display the price of the option as a final price not as increment or decrement.

For example, now I have:
specialprice:7$
option1:   +2$     (additional)
option2:   +3$     (additional)

and I would like to show:
specialprice:7$
option1:     9$    (final price)
option2:   10$    (final price)

How can I do that in the konakart demo?

Thank you.
Best regards.

Andrea Castelli
6
Hi,
I would like to make something happen when the order status change. To be more precise: I would like to send an email to someone else when the status of an order change to my custom status "SENT".

Is it possible through configuration?
Should I create a new custom order view by programming?

Any advice will be appreciate.

Thank you.
Best regards.

Andrea Castelli



7
KonaKart WebSite & Demonstrations / Ticket reservation
January 13, 2012, 07:47:23 am
Hi,
a generic question:

is konakart suitable for ticket reservation?

Best regards.

Thank you.
Andrea Castelli
8
Programming of KonaKart / searchForProducts sorting?
January 11, 2012, 08:28:37 am
Hi everybody,
just a simple question:
what is the default sorting of

          kkAppEng.getProductMgr().searchForProducts(ps);

Thank you.
Bye.
9
Hi I have developed a nice feature to link better the products in the store front of Konakart.

So when an external site (it can be the official site of a manufacturer) links a product it can refer to the right language.
What do you think about it?

Here is my code.


In ShowProductDetailsAction I added at the end of the URL

         // add the current locale
         url.append("&locale=");
         url.append(URLEncoder.encode(kkAppEng.getLocale(), "UTF-8"));

and
         readLocale(request, kkAppEng);
         final ProductIf selectedProd = kkAppEng.getProductMgr().getSelectedProduct();

where readLocale is
private void readLocale(final HttpServletRequest request, final KKAppEng kkAppEng) throws KKException,
       KKAppException {
      if (StringUtils.isEmpty(request.getParameter("locale"))) {
         return;
      }
      if (!StringUtils.contains(request.getParameter("locale"), "_")) {
         return;
      }

      String locale = request.getParameter("locale");


      /*
       * The locale should be in the form languageCode_countryCode (i.e. en_GB, it_IT). We need to split up the two
       * codes.
       */
      final String[] codes = locale.split("_");

      /*
       * Set the current locale in KonaKart so that calls to the engine use this locale.
       */
      kkAppEng.setLocale(codes[0], codes[1]);

      // Set the message resources in kkAppEng
      kkAppEng.setMsgResources(getResources(request));

      // Set the currrent locale so that it's picked up by Struts
      setLocale(request, new Locale(codes[0], codes[1]));
   }
10
Is it possible to insert a table in the rich text editor for the product description?
Maybe there is some parameters to change like FCK editor?

Thank you and happy new year.
Andrea
11
Programming of KonaKart / Bug? pagination and images
December 20, 2011, 08:53:37 am
Hi,
I found a strange behavior in the standard pagination.

Clicking on next, the flow of the jsps goes there:

<logic:equal name="prodMgr" property="headerToShow" value="expired">         
             <div class="rel left max msg-box texCenter text14">
              <bean:message key="products.body.products.have.expired"/>
         </div>
</logic:equal>


displaying ...Products have expired Try new search...

After a while I noticed a product with different images.
The path for the images of that product is made in this way:

custom10 + image2

where:
custom10="http://myspecial_proxy"
image2="/my_special_image.jpg"

If I put
custom10=""
image2="http://myspecial_proxy/my_special_image.jpg"

everything works.
What does it happen in pagination? I don't have exception in my logs

Thank you.
Andrea

12
Installation of KonaKart / BirtViewer OSGI exception
December 15, 2011, 08:40:28 am
Hi, I successfully installed konakart 5.5.0.2 and everything worked.

Then I moved the webapps to a different structure and  the reporting tool doesn't work yet. konakart and konakartadmin still works.

At startup I have this exception:

org.eclipse.birt.core.exception.BirtException: error.CannotStartupOSGIPlatform
        at org.eclipse.birt.core.framework.Platform.startup(Platform.java:92)

Any ideas?
Thank you for any advice.

Best regards.
Andrea
13
Programming of KonaKart / Future developments
November 28, 2011, 11:04:45 am
Hi everybody, this is an open discusssion.

I completed my first experience with Konakart. I found it very interesting and valueable.
I would like to address the future development of the team explaining certain point I found not very easy.

1- provide an example of a checkout with unregistered user without using GWT.  I found GWT powerful but not easy to approach (the skills required are high to manage it and the  development time increase too much).

2- provide easy methods toload state when countries is loaded.

3- provide message/warning when a coupon entered doesn't match the parameter required (max usage, not valid)

4- allow to the admin the possibility to better personalize the admin interface for the product. (for example hide unwanted tab or cells)

5- (don't hate me) the login panel of the admin interface is awful. I can't show it to 1 thousand dollar customer that panel. I'm a developer and I know how much is hard make a stable platform. But the end-user see only that panel.

What do you think about these points? HTH.
   
Thank you.
Best regards.
Andrea




14
Good morning,
I have little problem with the KK Admin App. When I refresh a page  (for example http://myhost.com/konakartadmin/#kk_panel_promotions) the Login panel is displayed.

Is this the right behaviour?
Or did I made a mistake in my configurations?

Thank you very much for any help.

Andrea
15
Programming of KonaKart / OrderTotals
September 01, 2011, 05:08:13 pm
Hi, another question.
In  the OPC and ShowOrders the order totals array is called.

For example:

Sub-Total:   8.90CHF
Table Rate (Best Way):   8.50CHF
Total:

The label Sub-Total and Total are the title of the object orderTotal. How can I internazionalize them?

Thanks.
Bye
Andrea
16
Hi,
I'm at my first experience with GWT and OnePageCheckout. I followed the instructions at http://www.konakart.com/docs/OPC.html. The project has been compiled and the toolkit has been opened with root@localhost as user. Everything has worked as expected.

But in the folder "war" there are lot of files.
Which are the only files that I should copy to my konakart project after I will made my changes?

The log ends with this:

      Emitting resource 0A9476898799A150D840F0B1C3672921.cache.png
      Emitting resource 2298C9751FED8FC1A03F4808E66CFF5F.cache.html
      Emitting resource 2298C9751FED8FC1A03F4808E66CFF5F.symbolMap
      Emitting resource 396F806CD63ABD414BFBB9D57429F05B.cache.png
      Emitting resource 4D37C1DB388ADC527B22D0E4D5CA9DB2.cache.html
      Emitting resource 4D37C1DB388ADC527B22D0E4D5CA9DB2.symbolMap
      Emitting resource 4F8A3127CE0975A071AB3B0D72B8CB0D.cache.html
      Emitting resource 4F8A3127CE0975A071AB3B0D72B8CB0D.symbolMap
      Emitting resource 521819ADC02944F8EC91B2B7A4A1B40C.cache.html
      Emitting resource 521819ADC02944F8EC91B2B7A4A1B40C.symbolMap
      Emitting resource 81E78FE20537A0384A6B50BCCD0D6579.cache.html
      Emitting resource 81E78FE20537A0384A6B50BCCD0D6579.symbolMap
      Emitting resource CA352A3820CEF4678CA2290ECF5A5BF2.cache.html
      Emitting resource CA352A3820CEF4678CA2290ECF5A5BF2.symbolMap
      Emitting resource DF7764EEC1903CD03C9545B354D8D8E4.cache.png
      Emitting resource E44767377485D18D6B6864F65BA8EF73.cache.png
      Emitting resource E4E932214C82538BA412798EE4ED2062.gwt.rpc
      Emitting resource EDC7827FEEA59EE44AD790B1C6430C45.cache.png
      Emitting resource Konakart.html
      Emitting resource arrow_east_south.gif
      Emitting resource clear.cache.gif
      Emitting resource com.konakart.Konakart.nocache.js
      Emitting resource com.konakart.client.KKGWTServiceIf.rpc.log
      Emitting resource hosted.html
      Emitting resource icons/error.gif
      Emitting resource icons/success.gif
      Emitting resource images/de_DE/buttons/button_back.gif
      Emitting resource images/de_DE/buttons/button_confirm_order.gif
      Emitting resource images/de_DE/buttons/button_continue.gif
      Emitting resource images/de_DE/buttons/button_login.gif
      Emitting resource images/de_DE/buttons/button_update.gif
      Emitting resource images/en_GB/buttons/button_back.gif
      Emitting resource images/en_GB/buttons/button_confirm_order.gif
      Emitting resource images/en_GB/buttons/button_continue.gif
      Emitting resource images/en_GB/buttons/button_login.gif
      Emitting resource images/en_GB/buttons/button_update.gif
      Emitting resource images/es_ES/buttons/button_back.gif
      Emitting resource images/es_ES/buttons/button_confirm_order.gif
      Emitting resource images/es_ES/buttons/button_continue.gif
      Emitting resource images/es_ES/buttons/button_login.gif
      Emitting resource images/es_ES/buttons/button_update.gif
      Emitting resource images/loader.gif
      Emitting resource images/pt_BR/buttons/button_back.gif
      Emitting resource images/pt_BR/buttons/button_confirm_order.gif
      Emitting resource images/pt_BR/buttons/button_continue.gif
      Emitting resource images/pt_BR/buttons/button_login.gif
      Emitting resource images/pt_BR/buttons/button_update.gif
      Emitting resource manifest.txt
      Emitting resource pixel_trans.gif
      Emitting resource skin5.css
      Emitting resource skin_style.css
      Emitting resource splitPoints0.xml.gz
      Emitting resource splitPoints1.xml.gz
      Emitting resource splitPoints2.xml.gz
      Emitting resource splitPoints3.xml.gz
      Emitting resource splitPoints4.xml.gz
      Emitting resource splitPoints5.xml.gz
      Emitting resource table_background_account.gif
      Emitting resource table_background_confirmation.gif
      Emitting resource table_background_delivery.gif
      Emitting resource table_background_login.gif
      Emitting resource table_background_password_forgotten.gif
   Link succeeded
   Compilation succeeded -- 59.471s

I suppose that a good knowledge of GWT could be enough to answer to my question but I don't have it yet.

Thank you for any further advice.

Best regards.
Andrea
17
Good morning,

is it possible to enable a mechanism of double optin for the new customers through the admin interface or the configuration files?

If no, what  is the best  way to do that coding?

Thank you.

Andrea
18
Configuration of KonaKart / coupons in CE
March 08, 2011, 02:18:42 pm
Hi guys,

I'm using a Community Edition. I think coupons are enabled for CE. Is it right?

I found the following lines concerning the enterprise edition:
>Gift Certificates. Gift Certificate products may be connected to any type of promotion and activated through a coupon code >contained within the certificate.

But this mean that  gift certificates work only for Enterprise Edition. Coupons work also for Community Edition. Right? 

Thank you.
Best regards.

Andrea
19
Programming of KonaKart / Search
March 07, 2011, 04:57:25 pm
Hi guys.
I'm developing my first site with KK and I find it very cool. It adopts some nice feature and seems that KK developers have resolved problems before I struggle with them. Great.

But (there is always a "but") I do not understand the Search feature.

KK have categories, manufacturers, offers, shipping categories and other nice grouping methods.

I would like to be able to search a product that:

  • belongs to categories A and B but not C

  • belongs to manufacturer D and E but not F

  • is at a special price, and so on...


I read other topics and I know that an API that makes this work for me does not exist.

1- Why a more powerful API for the search is not provided? (I want to understand KK)
2- How can I reach the same effect with one submit?
3- Is it possible to execute  an SQL statement from  the API passing parameters as Strings? (Everyone can do his customized queries)

Thank you.
Best regards.
Andrea

20
Programming of KonaKart / konakartadmin as cms
February 28, 2011, 11:11:11 am
Hi guys,
I'm developing a shop like the konakart demo as a website, but not based on a real CMS. But I would like to offer to the admin user the possibility to change for example an image (the header), a text (promotions title) and a downloadable file (disclaimer in pdf).

What can I develop to do this? I don't want to integrate a CMS (at this moment).

I read this:
http://www.konakart.com/docs/AddingCustomFuncAdminApp.html

Other ideas?

Thank you.
Best regards.

Andrea