Re: Google Checkout module for Zen Cart (beta)
Thanks Ropu for the clarification. I figured it might not hurt to put the two files in both locations, so I as far as I can tell I have resolved that issue.
I am still having problems getting UPS Ground to show up in my cart once the GC button is clicked. The only shipping options that show up are 1DM, 1DML and XPD even though they show as commented out in mcshipping. I deleted line 117 so UPS Ground was NOT commented out, but as a novice, perhaps that was the wrong move. Perhaps you could give me some guidance here?
Re: Google Checkout module for Zen Cart (beta)
I am still having the same problem I had b4. No google check button. when I do try to check out it goes through the process on my web site then when you click confirm order it does not go to the google web site I get a smtp error page.
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
Dave Wilson
Thanks Ropu for the clarification. I figured it might not hurt to put the two files in both locations, so I as far as I can tell I have resolved that issue.
I am still having problems getting UPS Ground to show up in my cart once the GC button is clicked. The only shipping options that show up are 1DM, 1DML and XPD even though they show as commented out in mcshipping. I deleted line 117 so UPS Ground was NOT commented out, but as a novice, perhaps that was the wrong move. Perhaps you could give me some guidance here?
hi dave
try this
PHP Code:
'ups' => array('domestic_types' =>
array('1DM' => 'Next Day Air Early AM',
'1DML' => 'Next Day Air Early AM Letter',
'GND' => 'Ground',
'XPD' => 'Worldwide Expedited')
),
the idea is NOT to delete the one you want, is to uncomment it
tell me how this works.
btw, 'XPD' wont work for address outside us, basically because GC dont yet do int'l shipping
ropu
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
jhaase83
I am still having the same problem I had b4. No google check button. when I do try to check out it goes through the process on my web site then when you click confirm order it does not go to the google web site I get a smtp error page.
hi jhaase83,
just to know, have u tried this?
Quote:
Originally Posted by
ropu http://www.zen-cart.com/forum/images...s/viewpost.gif
have a look to the INSTALLATION file
* Note: The folder YOUR_TEMPLATE refers to the folder that contains your templates.
you must put the files in /includes/templates/YOUR_TEMPLATE/ in your own templates dir
there you should see the GC buy button.
ropu
ropu
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
ropu
hi jhaase83,
just to know, have u tried this?
ropu
Yes I did. I do have some of the files that where in the download. I copied and pasted the html over into them like the instructions said. Should I completly change the files to what is on the download?
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
ropu
eva, Int'l shipping is not yet available for GC. So any shipping outside US, will be marked as not-shippable.
ropu
Ok then, I'll wait until that's been fixed. In the mean time, can I send an invoice to my international customers and can they pay that way?
Re: Google Checkout module for Zen Cart (beta)
I have overcome the previous problem by pasting new UPS shipping code into mcshipping, but like Alik I see that real time rates are not showing up in GC. I see it has been advised to use multisocket, but I also see that some seem to be experiencing problems with this feature. Am I just inviting more problems going this route? I am also experiencing the same problem others seem to see with test orders in Sandbox not showing up in GC order box. Is this all related to time out problem? Thanks again for your help Ropu
Re: Google Checkout module for Zen Cart (beta)
Ropu,
Is there a possibility of posting a definitive list of what Zen Cart functions/features ARE supported by your GC mod, and which functions/features are NOT supported?
Also is there any programming option available in your mod to disable Google Checkout option whenever customer:
1) is logged in with an account associated with a non US address
2) adds a "virtual" product to their shopping cart?
3) for customers not logged into Zen Cart does your mod provide any feedback to the customer to make them aware that international shipping is not supported, before they spend time filling out forms at the Google Checkout site.
Or maybe update the Google Checkout logo to state "US domestic shipping only". Or can we edit te logo to show this? Otherwise how are customers to understand the shipping limitation?
I was really hoping that Google Checkout would quickly become a viable competitor to PayPal. But lacking support for international shipping and for virtual products (softgoods), that competition will not take place.
Maybe Google could hire some extra "Summer Coders" to make this happen?
Woody
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
ropu
yes it should, but i can tell you way, that function is already declared. i think your installation is mixed or not fully v1.2. Or you have a other contribution with the same function name.
im adding to the TODO list,
- add "gc_" to all GC internal functions
ropu
Ropu,
I removed the module and re-installed it. I am still getting the following error:
"Fatal error: Cannot redeclare selfurl() (previously declared in /home/blumcafe/public_html/coffeeshop/googlecheckout/gcheckout.php:38) in /home/blumcafe/public_html/coffeeshop/googlecheckout/gcheckout.php on line 37"
I look in developer's tool kit to see what else calls that selfURL function, but nothing shows there. I don't know what else to do at this point. Furthermore, in your previous post, you suggested that I add a "gc_" to all GC internal functions. I am not a programmer and I am not sure I understand what that means. Does that mean wherever I see a function call, I need to add the "gc_"? for instance "function strleft($s1, $s2) {" would now be "function gc_strleft($s1, $s2) {"? Please advise. I am running ZenCart 1.3.7. I just installed the GC module 1.2RC4Rev1.
Thanks,
Blum
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
ropu
hi dave
try this
PHP Code:
'ups' => array('domestic_types' =>
array('1DM' => 'Next Day Air Early AM',
'1DML' => 'Next Day Air Early AM Letter',
'GND' => 'Ground',
'XPD' => 'Worldwide Expedited')
),
the idea is NOT to delete the one you want, is to uncomment it
tell me how this works.
btw, 'XPD' wont work for address outside us, basically because GC dont yet do int'l shipping
ropu
Ropu, is there a way to clean up this file /googlecheckout/gcheckout.php or align it better so that it's easier to comment out the different shipping options. The white space is all over the places that sometimes commenting a line actually creates an error.
Thanks!