• Welcome to KonaKart Community Forum. Please login or sign up.
 
March 29, 2024, 12:52:27 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 - kingsulaman

1
Reporting / Re: Version Mismatch in My Store Status
April 29, 2009, 06:33:15 am
Quote from: heidi on April 29, 2009, 05:49:22 am
You don't provide much information (version of KK, platform, what you've changed, etc) so it's difficult to predict what might be wrong.

Something must have changed from the default installation.

Maybe the reference to the properties file in konakart.rptlibrary has changed?  Maybe that reference is now wrong?

Heidi


            I have changed the configuration, Report Viewer URL and Status Page Report URL was't correct.
          but now it has new error as:
 
Internet Explorer cannot display the webpage
   
   Most likely causes:
You are not connected to the Internet.
The website is encountering problems.
There might be a typing error in the address.

   What you can try:
     Diagnose Connection Problems 

     More information

This problem can be caused by a variety of issues, including:

Internet connectivity has been lost.
The website is temporarily unavailable.
The Domain Name Server (DNS) is not reachable.
The Domain Name Server (DNS) does not have a listing for the website's domain.
If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section.

For offline users

You can still view subscribed feeds and some recently viewed webpages.
To view subscribed feeds

Click the Favorites Center button , click Feeds, and then click the feed you want to view.

To view recently visited webpages (might not work on all pages)

Click Tools , and then click Work Offline.
Click the Favorites Center button , click History, and then click the page you want to view.


                         but my internet is working fine.
                 
2
Reporting / Re: Version Mismatch in My Store Status
April 29, 2009, 04:38:44 am
Quote from: pmarrone on July 21, 2008, 07:05:22 pm
Thank you ming for the response.
Yes, I confirm that the problem is caused by a bug of Firefox 3.0 (I'm using Firefox 3.0.1).
I tried to access to the admin app from a Windows machine using IE 6.0, and from there I can launch without problems all the reports.
I hope Firefox team will resolve soon the problem.

Konakart is a great product, and now I know that the support is great, too  ;D

Thanks
Paolo


     
Hi all i am having same problem with FF, and when i tried with IE. it gave following errors:
The following items have errors:


ReportDesign (id = 1):
+ Cannot open the connection for the driver: org.eclipse.birt.report.data.oda.jdbc
Cannot load JDBC Driver class: not found

does anybody have any solution for this.
3
Quote from: kans on April 26, 2009, 03:30:31 am
While create a product, the image base URL and image base path shows respectively as:

http://localhost:8780/konakart/images/

E:/MyFolder/konakart/webapps/konakart/images

I want these to be changed to a different location as per my actual target deployment.  Where should I change this and how can I change this?


In the Admin panel: Click Configuration Module, Select Images in Configuration panel:
Update Followings:
1- Image Base URL : http://IP/localhost:8780/konakart/images
2-C:\program Files\konakart\webapps\konakart\images

          It must work, if you find difficulty leme know.
4
Miscellaneous / Re: Paypal Integration
April 20, 2009, 11:50:06 am
Quote from: murp3433 on April 17, 2009, 02:26:56 pm
Make sure the return url on paypal's site is correct and check the IPN notification setting at paypal. it should be set to your callback url.

To test your ipn, go to developer.paypal.com click test tools and use the ipn simulator. If that doesnt work let me know what the logs say.


Thank you soo soo much........i just tested ipn simulator....it had error there, then i fixed up that and now its working fantastic.........so nice of you..thank you again.
5
Quote from: heidi on April 17, 2009, 01:00:53 pm
Have you set the callback username and password correctly in the module configuration?

yes i have given callback User name and password of admin@konakart.com
6
Miscellaneous / Re: Paypal Integration
April 17, 2009, 01:35:37 pm
Quote from: murp3433 on April 17, 2009, 01:25:41 pm
What are all of your settings in paypal? ipn, return url etc


Thank you reply:

My settings are as:
Paypal Status: True
Payment Zone: --none--
Callback URL admin@konakart.com
Callback Passwrod: princess
CallBACK url: http://202.165.234.44:8080/konakart/PayPalCallback.do
Return URL :http://host:port/konakart/CheckoutFinished.do
Cancel URL: http://host:port/konakart/CatalogCheckoutExternalPaymentErrorPage.do
Test Mode: True enabled
PayPal Id: kingsu_1239876815_biz@gmail.com  (My Buyer Account ID)
Transaction Curreny: US $
7
Quote from: julie on November 23, 2007, 12:06:52 pm
Hi Anni,

This is what you need to do :

if (prod.getDescription() == null ) {

   prod = kkEng.getEng().getProduct(kkEng.getSessionId(), prod.getId(), kkEng.getLangId());

        }




Thank you so much i had same problem...and i got fixes up.
8
Quote from: chekmate on January 14, 2009, 05:38:48 pm
Was this ever solved? I'm seeing the same issue.

Running the Authorize.net module, it is hitting CheckoutServerPaymentSubmitAction, no exceptions thrown, but after it sets the values in the PaymentDetailsIf object, none of those values are updated in the database. I haven't done anything to the action class. If need be, I'll manually update the database, but shouldn't this work already? Thanks for any insight.


Hi,
         I am having similar problem when returning from Paypal, i successfully paid at Paypal and got message "Order Processed Successfully" but nothing gets updated in database at konakart side,
I debugged the returning page page CatalogCheckoutFinishedBody.jsp as:

com.konakart.forms.EditNotifiedProductForm myForm = (com.konakart.forms.EditNotifiedProductForm) session.getAttribute("EditNotifiedProductForm");    
if (order != null && order.getOrderProducts() != null)
{
java.util.ArrayList prodList = new java.util.ArrayList();
for (int i = 0; i < order.getOrderProducts().length; i++)
{
System.out.println("Return Order: "+order.getOrderProducts().toString()+"-->"+ order.getOrderProducts().length);
com.konakart.appif.OrderProductIf op = order.getOrderProducts();
System.out.println("Order Product Name: "+op.getName()+"-->"+ op.toString());
com.konakart.al.NotifiedProductItem npf = new com.konakart.al.NotifiedProductItem(op.getProductId(), op.getName));
System.out.println("Notify Product Item: "+npf.getProdName()+"-->"+ npf.toString());            npf.setRemove(false);
   prodList.add(npf);
}
myForm.setItemList(prodList);
}


The sold product data is also returened, but no DB updates. can anybody help me,
9
Quote from: murp3433 on April 16, 2009, 05:03:31 pm
If i log in and then type that in it goes to a basically blank page. All of the left and top tiles are there but no body and no right tiles. The breadcrumbs say home checkout success.

If i login add something to my cart complete the checkout but on paypals site i type mysite/CheckoutFinished.do in the browser my cart is empty and the reg/login screen is there

If i go through with the payment through paypal and i check the payment info the gateway response is "completed" but the KonaKart Result Description: reads "There has been an unexpected exception. Please look at the log."

In the catalina logs i noticed that i get a bunch of

(StandardWrapperValve.java:invoke:250) Servlet.service() for servlet action threw exception
javax.servlet.jsp.JspException: Cannot find bean: "konakartKey" in any scope

and

com.konakart.app.KKException: The String parameter called sessionId must be given a value. It cannot be set to null or be left empty.
   at com.konakart.bl.BaseMgr.checkRequired(BaseMgr.java:200)



I believe the last one is an incorrect email setting




Thanks for you help.



Hi,
            can anybody help me, I have integrated paypal, everything goes fine till paymet and returns to konakrt site with successfull order paymets.....but there is no update at Konakrt site reharding Payment completed and updates in the products quanity...can anybody help me.
10

Hi.
    I have configures Paypal. i am successfully paying at Paypal site and then getting back to konakart application by clicking on Back to Merchant.
I get Successfull message on my site(konakart), but surprisingly i am not getting any updates in Database regarding Payment neither in the quantity of product.

Does anybody has any solutions....i am really stucked.
11
Quote from: ganesh.boil on March 25, 2009, 01:33:58 pm
Hi Konakartians,
I have imported the konakart into my eclipse by following the greate useful links like,

http://www.konakart.com/forum/index.php/topic,501.0.html  and
http://lightwaydev.blogspot.com/2008/12/add-konakart-to-eclipse.html

And now i'm running the konakart sucessfully. But now my problem is i want to debug the konakart in eclipse..
I'm just stucked over ther... And the above links mentioning that we need to change the build.xml file available at KONAKART_HOME/Custom directory if we want to customize.
And i'm very new to ANT script as well. Can anyone tell me what are the changes are required in build.xml for customizing the konakart.
Thanks in advance,
Thanks 4 ur support.


First Enable the break point. where you want to debugg, then go to left menu of Object Browser in eclipse where konakart is acceable,right click at Konakart project name (at top most in the left ment), select Debug As, select option 3 (My Eclipse Server Application), a popup window will open, then select server with which you want to run application (preferably select Tomcat 5.x). you application is running, access it with I.E or firefox with http://localhost:8080/konakart
then you will start getting debugging
12
Quote from: ganesh.boil on March 30, 2009, 05:57:54 am
Hi I'm using konakart community version...First i have configured the "PayPal.com" and then it works fine now i just uninstall the "PayPal.com" and "Cash On Delivery" and install the "Authorize.Net" through the Admin Application. But in the client Application it is not showing any kind of payment modules.even i restarted the server... And after that i installed "Cash On Delivery" and "PayPal.com" and restarted the server but still in client application it won't showing any payment mode.

Any help is appriciated.

Regards,
Ganesh.

Just go and remove PayPal as well as Cash on Delivery Modules.
Then install Cash on delivery module: enable its properities as: Enable Cash On Delivery Module: True, Sort Order 0.
Now check for client, its should work for Cash on Delievery, after that you should install PayPal with Properities as:
Sort Order:1, Callback User Name: admin@konakart.com,  Callback User Name: Princess, Call Back URL: http://IPADRESS:8080/konakart/PayPalCallback.do, Cancel URL: http://host:port/konakart/CatalogCheckoutExternalPaymentErrorPage.do, Return URL: http://host:port/konakart/CheckoutFinished.do, Test Mode: True, PayPal ID: Your Buyer ID in Developer Test Account, Tracnsaction Currency: US $.
It should work with this
13
Quote from: kingsulaman on April 17, 2009, 07:54:42 am
Quote from: murp3433 on April 15, 2009, 04:21:18 pm
What URL do i use for the paypal ipn? The Callback URL?



Use this URL
http://YourIP/LIVE IP:8080/konakart/PayPalCallback.do

Example:
http://202.165.234.44:8080/konakart/PayPalCallback.do
14
Quote from: murp3433 on April 15, 2009, 04:21:18 pm
What URL do i use for the paypal ipn? The Callback URL?



Use this URL
http://YourIP/LIVE IP:8080/konakart/PayPalCallback.do
15

         Hi,
                         While installing konakart with mysql i am having following connectivity problem with mysql server.......
Unknown initial charcter set index '48' recieved from server. Initial client character set can be forced via the character encoding property.

                             I am new to Konakart and hav't used mysql before as well. so help me please!