hi Jefflam
have you tested with responsehandler_test?
here is a new link for an online test
http://demo.globant.com/~brovagnati/tools -> responsehandler Test
try disabling multisocket...
try it and see how it goes...
ropu
Printable View
hi Jefflam
have you tested with responsehandler_test?
here is a new link for an online test
http://demo.globant.com/~brovagnati/tools -> responsehandler Test
try disabling multisocket...
try it and see how it goes...
ropu
hi eaglewu
first, there is no need to rename any table. gc table names are defined in the includes/modules/payment/googlecheckout.php class
second, what does the logs say? googlecheckout->settings->integration?
are u installed over CGI? enabled CGI feature?
try this, and tell us
ropu
Hi Ropu,
Thank you for your help.
Here is my test result:
XML We Sent:Authorization: Basic XXXXXX:XXXXXX
Content-Type: application/xml;charset=UTF-8
Accept: application/xml;charset=UTF-8
X-Origin-IP: xx.xxx.xxx.xxx
XML We Received:SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:func(144):reason(134)
Time to response: 0.77490711212158 segs
Ropu, Can you clarify my problem? Do I need to find a good SSL?
Jefflam
logs: HTTP Basic Authentication failed.
Tue Nov 21 9:47:59 ART 2006:- Invalid
I followed all the steps of installation instruction. For the remaining questions. I have no idea.
Would you please tell me how to check it is installed over CGI and how to enable CGI. Do I must contact the hoster to do this?
Jefflam,
I don't know that this will solve your problem but if you're running an ecommerce site you really should spend $29 - $89 (depending on who you buy from) to get a private certificate. That will for sure get you a dedicated ip (even on shared hosting) as well as an https address that will not confuse your customer.
There is really no point using shared certificate these days if you're serious about your store.
hi all
i've seen many merchant with the issue of no secure popup with Google Analytics feature enabled
this should fix it
replace in googlecheckout/gcheckout.php line 546
withCode:if(!(MODULE_PAYMENT_GOOGLECHECKOUT_ANALYTICS == 'NONE')) {
echo '<!-- Start Google analytics -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "' . MODULE_PAYMENT_GOOGLECHECKOUT_ANALYTICS . '";
urchinTracker();
</script>
<script src="http://checkout.google.com/files/digital/urchin_post.js" type="text/javascript"></script>
<!-- End Google analytics -->';
}
ropuCode:if(!(MODULE_PAYMENT_GOOGLECHECKOUT_ANALYTICS == 'NONE')) {
echo '<!-- Start Google analytics -->
<script src="' . (($request_type == 'SSL') ? 'https://ssl.google-analytics.com/urchin.js' : 'http://www.google-analytics.com/urchin.js' ) . '" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "' . MODULE_PAYMENT_GOOGLECHECKOUT_ANALYTICS . '";
urchinTracker();
</script>
<script src="' . (($request_type == 'SSL') ? 'https' : 'http' ) . '://checkout.google.com/files/digital/urchin_post.js" type="text/javascript"></script>
<!-- End Google analytics -->';
}
Ropu,
This is the code that I am currently using to fire up Google Analytics which is not related to GoogleCheckout. This is currently in mind html_header.php:
Is this going to conflict with the code above that you suggested for Google Checkout? I am currently still using GCO1.4 so I haven't had to deal with this issue.PHP Code:
<?php
// GOOGLE ANALYTICS
if ($request_type == 'NONSSL') {
$google_url = 'http://www.google-analytics.com/urchin.js';
} else {
$google_url = 'https://ssl.google-analytics.com/urchin.js';
}
// END GOOGLE ANALYTICS
?>
<script src="<?php echo $google_url; ?>" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "DELETED";
urchinTracker();
</script>
I have a second installation of Zen Cart in a subdirectory from my main site. I'm using this for certain customers as there will be extra products and different pricing.
Do I need a second GCO seller's account to process those sales? Since my second site is just a subdirectory off the main site, is there a way to just use the same account?
Ropu the Google Checkout demo @ http://demo.globant.com/~brovagnati/zen_demo1/ is a little bit of a dissapointment. It really doesn't show that USPS, FedEx or UPS works which I believe a lot us are interested in seeing in action that it actually works.
It would be great if you can configure your demo to reflect how merchants/retailers will actually use this mod.
Thanks!