• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 24, 2024, 09:35:58 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 - Sony George

21
Hello,

when i login to the admin app i get this message,
User with id = 2 cannot access the API call : getAllRoles

step to reproduce the error,

do a fresh install of app 4.1 version
login to the admin app as admin@konakart.com/princess
In Configuration Panel ---> select Security and Auditing
set Enable Security on API Calls value to true
logout,
try to login again, i get this error
User with id = 2 cannot access the API call : getAllRoles

why does this happen ? am i doing anything wrong ?

regards
22
Hello,

i would like to show the total weight of the items in the shopping cart and also in the checkout screens
how can i achieve this ??

regards


23
Hello,
every where, to set the breadcrumb the following code is used
kkAppEng.nav.add(getCatMessage(request, "header.address.book"), request);

execpt in LogoutAction.java,
kkAppEng.nav.set(Constants.logoutPage, request);
so the language is not picked up,

any specific reason ???

can i change it to

kkAppEng.nav.set(getCatMessage(request, "header.logout.page"), request);

??
regards


24
hello,

there is no option to add name of manufactures in different languages, like that implemented in category ??

regards

Sony
25
hello, konakart,

i write a review in my language ie : in malayalam, this is the data for you to test "[ ഇതു ഒരു നല്ല സിനിമ ആണ്  ]"

but the same is seen as html char. in konakart admin app, when i looked in the database, i understand that htmlescape is done with
review text, how to fix this, please see the attached image of admin app

regards

Sony
26
Dear Konakart ,

the following error is happening when indic language is implemented, becase url encoding is not done

Oct 1, 2009 3:35:32 PM org.apache.tomcat.util.http.Parameters processParameters
WARNING: Parameters: Character decoding failed. Parameter skipped.
java.io.CharConversionException: EOF
   at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:83)
   at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:49)
   at org.apache.tomcat.util.http.Parameters.urlDecode(Parameters.java:412)
   at org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java:394)
   at org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java:510)
   at org.apache.tomcat.util.http.Parameters.handleQueryParameters(Parameters.java:267)
   at org.apache.catalina.connector.Request.parseParameters(Request.java:2441)
   at org.apache.catalina.connector.Request.getParameter(Request.java:1040)
   at org.apache.catalina.connector.RequestFacade.getParameter(RequestFacade.java:355)


to fix this edit SelectCategoryAction1.java line no 133 and 135 and edit as below
old value
           
132                url.append("&");
133                url.append(getCatMessage(request, "seo.product.category"));
134                url.append("=");
135                url.append(cat.getName());


to this
               
132                url.append("&");
133                url.append(java.net.URLEncoder.encode(getCatMessage(request, "seo.product.category"),"UTF-8"));
134                url.append("=");
135                url.append(java.net.URLEncoder.encode(cat.getName(),"UTF-8"));


regards
27
Hello,

I would like to Implement SMS Functionality to konakart, ie
every time an order is placed i have to sent SMS to the customer who placed the order and also to the store admin,
also sent SMS when order status is changed such as shipped,delivered etc. to customer and to store admin.

where do i have to start ??

from the source code and doc i understand that when an order is placed,
OrderIntegrationMgr.java is called from konakart and

when order status is changed in the konakart admin app
AdminOrderIntegrationMgr.java is called.

am i on the right track ???

regards
28
Dear Konakart team,

RandomReviewTile.jsp page is not showing the utf char correctly

The method revMgr.truncateDesc does not return utf char.
<%=revMgr.truncateDesc(rev.getReviewText(),15,60)%>

see the attached images
konakart_review_tile_1.jpg is taken with out using the method revMgr.truncateDesc <%=rev.getReviewText()%>

but the second image which is not correct
konakart_review_tile_2.jpg is taken using the method revMgr.truncateDesc <%=revMgr.truncateDesc(rev.getReviewText(),15,60)%>

regards


29
hello,

like ShowAllNewProds.do action class to list the new products, is there any, to list Best Seller Products ???

regards
30
hello,

is a demo or a live site url of konakart multi-store available to have  a look???

regards

Sony
31
Dear All,

As of now konakart have all the images in the images folder ie: the images of the products and also the images for the application such as table_background_delivery.gif, table_background_cart.gif etc, it would be a nice idea if the images that are related to the application are moved to another directory such as styles directory and leave the product related images in the images folder, so that easy back up of images can be done.

also, if i want to make a new theme, i have to distinguish each files from the images folder, what are the required images and what are the images that are not required, to be replaced with table_background_delivery.gif, table_background_cart.gif etc.

please comment on this....

regards

Sony
32

Dear Konakart team,

does konakart have the option to move an item from cart to wish list ??? , so that the buyer car buy it later.....

regards
33
Dear Konakart team,

For example, i have 2 items in my wish list and an empty cart, i move the 2 items to cart from wish list,
with out checking the remove check box in wish list screen, now i have 2 items in cart and the same 2 items in wish list too...
does konakart have the option to automatically remove the item from wish list when adding to cart ???

regards

34
Hello,

I want to reflect address custom fields in my address format,
so in the konakartadmin --->Localizations -->AddressFormats
i added a new address format, this is the format

$firstname $lastname$cr$streets$cr$city, $postcode$cr$state, $country$cr$custom1$cr$custom2$cr$custom3

then i assigned this address format to my Country India in Locations/Taxes--->Countries

restarted the server, then logged into konakart, but my address are comming in this format

Sony George
Kozhuppakalam
Vellor
PuthenCruz, 682308
Kerala, India
$custom1
$custom2
$custom3


ie: the custom1, custom2 and custom3 are not replaced....

NB: I have saved values to address custom fields

i tried the variables $custom1, $addressCustom1, $addcustom1, $addCustom1 etc.... none of this worked

is any other things, i have to do to achive this

thanks and regards
35
Hello,

This question is to the konakartians,
In NewAddrBody.jsp and EditAddrBody.jsp, you have hard coded the country names,
ie:

<html:option value="1">Afghanistan</html:option>
<html:option value="2">Albania</html:option>
<html:option value="3">Algeria</html:option>
<html:option value="4">American Samoa</html:option>
<html:option value="5">Andorra</html:option>...............

but in RegisterCustomerBody.jsp file you are fetching from the database and displaying...

<html:select name="RegisterCustomerForm" property="countryId">
<html:option value="-1"><bean:message key="register.customer.body.select"/></html:option>
<%com.konakart.appif.CountryIf[] countries = kkEng.getEng().getAllCountries();
if (countries != null)
{
for ( int i = 0; i < countries.length; i++)
{
com.konakart.appif.CountryIf country = countries;%>
<html:option value="<%=Integer.toString(country.getId())%>"><%=country.getName()%></html:option>
<%}}%>
</html:select>

My Question is,
  Is there any specific reason for this ??? fetching from database will minimise the code, and look good..

if this question is foolish, please do forgive...
regars
36
Hello,

I would like to know if konakart have a bug tracking tool.
i did not see any link / info about the bug tracking tool in www.konakart.com

if konakart do not have any, then i would recommend
The Bug Genie  http://www.thebuggenie.com/
a very nice bug reporting tool

regards