OSCOMMERCE SUPPORT CALL 702-453-3332

 

Help - Search - Members - Calendar
Full Version: Offical Google Checkout module for osCommerce Support Thread
osCommerce Community Support Forums > osCommerce Online Merchant v2.x > Contributions / Add-Ons > Payment Modules > Other
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
weightman
Is it possible to ship from multiple locations, depending on the product, using the google checkout module with shipping cost still calculated though the module?

Thanks
heavyg
Just finished installing this add on. After some initial confusion as to why the tables didnt get created (found a thread with the SQL in it), I'm tring to test the setup and the pages seem to display ok but when I try and display the https://store/googlecheckout/responsehandler.php page I get a Invalid Merchant Id/Key Pair error. I verified both the sandbox an production keys so I'm not sure what else to check. The SSL is enabled and supported. I'm also getting prompted for a password when running it so I'm not sure if that correct. I've tried searching around but nothing useful is coming up. Any ideas ?
rs2k
I have been working with this module all day trying to get it to work with store and have been successful. Now the only problem is that after the buyer comes back to my site VIA gc_return.php the shopping cart is still full, the products have not been subtracted from my inventory, and the store does not know an order has taken place. I do however get the confirmation email from Google.

Maybe this is because I am in sandbox mode?

Any idea what the problem may be?

I have not had much luck searching for the fix.

I have found this bit of code below, but that only solves one out of three problems:
CODE
<?php
$cart->reset(true);
?>



Also, when I get to the Google check out screen it defaults the shipping to Flat rate 6.99 instead of Free shipping when orders are over $70. Is there a way to default the shipping the Free Shipping?
OverThere
I'm having a problem with Google Checkout. It constantly says "This merchant does not ship to your address" whenever I go to checkout (sandbox). My address is legit and I have changed the shipping_methods.php file with my available methods. Sometimes shipping does show up but with the callback failed values which probably means that callback failed. Any help would be appreciated. I need to get my store up by Monday with or without google checkout but I would prefer it with. If anybody can help me, please feel free to send me a PM with your instant messaging screen names.

Thanks
goody974
Does anyone actually have this working correctly in the UK?

My problem is that VAT is not displayed on the product line when you view the order in the OSC admin area.

If anyone else has this working I would appreciate hearing from you as its obviously something I am doing wrong.

Thanks
midwestb
After having things work very well the past month or so, I now noticed a small problem.

When a customer makes an order, the stock numbers, for some reason, are not showing up in google checkout. These numbers are extremely helpful to us, and we really would like them to show up. Anyone know how to get these bad boys back in there? I'm sure it's not a hard task, but it involves sending OSC info to google, and I really don't want to mess anything up here....

store: http://www.handlelatch.com/catalog/

Thanks!
jonoscart
My Orders are not showing up in OS admin. GC is working fine. No errors. messages are loged but orders are not recorded in Admin. What the F?!k..Sorry. blink.gif
none_uk
QUOTE (jonoscart @ Jan 25 2008, 07:02 PM) *
My Orders are not showing up in OS admin. GC is working fine. No errors. messages are loged but orders are not recorded in Admin. What the F?!k..Sorry. blink.gif


uninstall then reinstall in admin--> module---> payment
FWR Media
Why the site moderators allowed Silverado05, (who is totally inept at coding and moaned consistently about his inability to get the original Gcheckout working), to start a "so called" OFFICIAL Google Checkout thread I just can't fathom.
jonoscart
QUOTE (none_uk @ Jan 25 2008, 07:27 PM) *
uninstall then reinstall in admin--> module---> payment



Nope, sorry not that simple. Still doing the same thing. The message log in the dir/googlecheckout/ recieves the xml but the cart does not add it to the database. What could be missing here?
rs2k
QUOTE (jonoscart @ Jan 25 2008, 05:20 PM) *
Nope, sorry not that simple. Still doing the same thing. The message log in the dir/googlecheckout/ recieves the xml but the cart does not add it to the database. What could be missing here?



I'm having the same problem. I have tried uninstalling and reinstalling as well. Other than that the module works great.
none_uk
QUOTE (jonoscart @ Jan 25 2008, 11:20 PM) *
Nope, sorry not that simple. Still doing the same thing. The message log in the dir/googlecheckout/ recieves the xml but the cart does not add it to the database. What could be missing here?


the database for GCO is not created, i had same problem. If you uninstall and then install it will try to add tables unless its already there
rs2k
QUOTE (none_uk @ Jan 26 2008, 06:04 PM) *
the database for GCO is not created, i had same problem. If you uninstall and then install it will try to add tables unless its already there



I have had some trouble with tables being automatically created with this and some of my other contributions. What tables need to be added. I want to do it manually but I don't know what I need to add.
JnJSpdShop
Okay this might sound stupid but does this Contri work with OScommerce 2.2 MS2?

I only ask because it says this "NOTE: This will work with New OSCommercer v2.2. RC1"
JnJSpdShop
Another question on the manual integration method:

CODE
----------------------------------------------------------------------------
  2a. /catalog/admin/modules.php                                       LINE 45
  ===========================================================================
=
  REPLACE:

      case 'save':
        while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {
          tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $value . "' where configuration_key = '" . $key . "'");
        }
        tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $HTTP_GET_VARS['module']));
        break;

  WITH:

      case 'save':
      // ** GOOGLE CHECKOUT **      
        // fix configuration no saving -
          reset($HTTP_POST_VARS['configuration']);
        // end fix
      // ** END GOOGLE CHECKOUT **      
        while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {
        // ** GOOGLE CHECKOUT **    
          // Checks if module is of type google checkout and also verfies if this configuration is
          // for the check boxes for the shipping options                   
          if( is_array( $value ) ){
                $value = implode( ", ", $value);
                $value = ereg_replace (", --none--", "", $value);
              }
        // ** END GOOGLE CHECKOUT **
    
          tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = " . gc_makeSqlString($value) . " where configuration_key = " . gc_makeSqlString($key));
        }
        tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $HTTP_GET_VARS['module']));
        break;


It looks like I have something installed for Authorize.net installed for a CVV popup window. Here is my modules.php file:

CODE
   case 'save':

     while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {



/********************************

*  Addition for Authorize.net Consolidated

*  by Austin519 - CVV PopUp Window

*  If using a custom modules.php

*  add in the following line

********************************/



       if (is_array($value)) $value = implode( ", ", $value);



/*******************************/



       tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $value . "' where configuration_key = '" . $key . "'");

     }

        tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $HTTP_GET_VARS['module']));


I did a file compare between the includes modules.php file and my current modules.php file and this value is inserted in there:

CODE
/********************************

*  Addition for Authorize.net Consolidated

*  by Austin519 - CVV PopUp Window

*  If using a custom modules.php

*  add in the following line

********************************/



       if (is_array($value)) $value = implode( ", ", $value);



/*******************************/


I am not really sure how to integrate this google checkout into my code
paramaniac
Can anyone explain how to change Google Checkout to my OSC currency? I need to change it from USD to GBP.
vyoufinder
Some thoughts about this module:

Great contribution overall. A lot of hefty programming went into this one and the code behind it is excellent. It took a LOT of customizing to get this working in my cart and it's still not 100% there. I haven't even begun testing how it handles different currencies and currencies not handled by Google Checkout but enabled in my cart. Maybe this is not beta if installed on stock osCommerce but on mine it's big-time-beta code. I'm debating whether or not to continue to get this working better or to uninstall it entirely and not use Google checkout until they (inevitably they will have to because this idea they have is so dumb it's not going to work) change their Terms of Service agreement to allow people to use Google Checkout without it being the one being pushed on people.

The first thing I notice is that there's no Google Checkout when the user checks out as normal. None at all. Before they checkout, however, there's a "or use Google Checkout" button which is over pronounced on the page. It totally sucks. I read in this forum that the reason is because people can order from Google and Google passes the information into the cart for the customer, saving them the trouble of entering the information into my cart. I think this logic is stupid. It's backwards in every way. If Google wants to pass the customer information to my cart, that would be fine but sending them the order information, as in the product information, is totally stupid. How are they going to handle attributes and attribute sets? What about custom fields people have added? It's stupid in every way. To send it to Google just to send it back to myself is stupid. Why not split the information into two parts; the customer's billing and shipping information separate from the customer's order information, then merge the two? THIS would make sense. Having a strongarm tactic trying to push people to use Google Checkout is like Yahoo with their Yahoo toolbar. It's like buying a computer and getting it home only to find out that it's got a ton of junk all over it that's going to take you all day to get rid of.... It sucks. I don't buy the excuse that it's to make it easier on the user. This could be done without being pushy about which payment processor people are opted. I don't like totally rebuilding my cart just to suit Google's trying to control everything. I especially don't like passing all these variables to Google then in a year and every year thereafter, they change the variables they accept and we all rebuild our shopping carts all over again. Google also gives the option to the customer to keep their email address confidential (from you, the store owner.) Another example of Google hijacking your business...

Why do I feel like Google is being so nice all the time only because they want to OWN me?
FWR Media
Well look at what's happened .. PayPal release a whole wad of new versions way after Google released theirs and HPDL throws up immaculate working versions in a heartbeat. Google checkout has caused a lot of people a lot of heartache and, at least in my case, their contribution needed to be heavily recoded to work, original one added some 50 queries to product_info.php lol. (I still use my modified 1st version as the new one seems even more buggy.)

My guess is that PayPal support this project and GC do not. The moral of this story is .. hey Google if you want to take advantage of the tens of 1000s of osc users then support the project!!!

*** disclaimer ***
Pure supposition on my part.
goody974
Does anyone else have the problem of customers coming back to the store after checking out with google, their prices suddenly being displayed ex.vat when its supposed to be inc.vat?

Its a problem because I have a disclaimer on the pages saying all prices inc vat, so when a customer comes back to the store they think they have paid twice as much vat.

Anyone else noticed this?
avidreader
I have been trying to find the changes made to the Checkout Mod on the two most recent posted versions. I am having no luck. I wrote the following to Siverado, but it was kicked back because his mail box is full:

I am having problems with the last two addons for the Google Checkout Mod. Neither mrchain or chshoaib has a description of their changes in their post. I was trying to update from the November version I had used and got no where. Since I haqve a highly modified site I was trying to find the updated portions.

This is what I found:

I checked the 1-16-08 update file and instructions, there were no changes noted from the November version. I checked all the modification dates on all the files and they are the same as the November version as well. I didn't compare each and every file because that would change the modification date on the file I believe. I wrote in to the thread and separately to the author-through the message process, both on the 17th. There is no answer from either method.

The 1-31-08 update: I checked the update files and instructions and there are no changes from November's version. I stopped there because I don't want to waste any more time. All this has used up enough already.

Each author joined OSC the day of the posted addon, mrchain=Patricia, and chshoaib=Chaudhary Shoaib. Last, I ran an author search for each and got the response: Unfortunately your search didn't return any results.


Can anyone add anything I may have missed? I wrote to Patricia today. If I hear from either author I will post the results.
goody974
As far as I am concerned you should not be using the one on the OSC Contributions site as it is incorrect. It has a vital part commented out from the module which creates the databases when you first install it.

The one that installs correctly is the one you download directly from the google checkout code site at http://code.google.com/p/google-checkout-oscommerce/

Look for version 1.4.5a in the featured downloads box on the right.

Note: I did mention to the developers that the version on OSC had vital differences to those posted there and nothing has been done about it,

I hope this helps you and that it wastes less of your time than it wasted of mine.
jonoscart
QUOTE (goody974 @ Feb 2 2008, 08:28 PM) *
As far as I am concerned you should not be using the one on the OSC Contributions site as it is incorrect. It has a vital part commented out from the module which creates the databases when you first install it.

The one that installs correctly is the one you download directly from the google checkout code site at http://code.google.com/p/google-checkout-oscommerce/

Look for version 1.4.5a in the featured downloads box on the right.

Note: I did mention to the developers that the version on OSC had vital differences to those posted there and nothing has been done about it,

I hope this helps you and that it wastes less of your time than it wasted of mine.


Can you show me where the commented out code is, because, I allready added the 1.4.5 v from the OSC site contributions and it was not much fun. If I could fix it by uncommenting some code, that would be eaiser than removing it and adding the 1.4.5 version from the google website. Just tell me what file to look in and I will compare the two files
goody974
QUOTE (jonoscart @ Feb 3 2008, 01:33 AM) *
Can you show me where the commented out code is, because, I allready added the 1.4.5 v from the OSC site contributions and it was not much fun. If I could fix it by uncommenting some code, that would be eaiser than removing it and adding the 1.4.5 version from the google website. Just tell me what file to look in and I will compare the two files

Sure, its in catalog/includes/modules/payment/googlecheckout.php

The lines to create the DB are :-
CODE
    tep_db_query("create table if not exists ". $this->table_name ." (customers_id int(11), buyer_id bigint(20))");
    tep_db_query("create table if not exists ". $this->table_order ." (orders_id int(11), google_order_number bigint(20), order_amount decimal(15,4))");

The file size for this particular file on the google code website is noticeably larger than that on the OSC website, but I havent done a full compare so I couldnt tell you all the differences.

HTH
none_uk
Hi got serious problem, customer used google checkout and it was cancelled and i got this error

CODE
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@domain.co.uk and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

when trying to access https://www.domain.co.uk/catalog/googlechec...onsehandler.php

it used to work fine when i tested on sandbox

PLEASE HELP
none_uk
CODE
<?xml version="1.0" encoding="UTF-8"?>
<merchant-calculation-callback xmlns="http://checkout.google.com/schema/2" serial-number="cb779898-0da2-4446-82e3-05675a167008">
  <shopping-cart>
    <items>
      <item>
        <item-weight value="1.7" unit="LB" />
        <item-name>HID Conversion Kit H1 6000K 35w</item-name>
        <item-description>Greater visibility - The combination of more light output and whiter colour make for better visibility in rain, snow and night time driving.
Longer Life - HID lamps will last on average 10 times as long than halogen bulbs.
Less Maintenance - Xenon runs cooler than your traditional halogens, th...</item-description>
        <quantity>1</quantity>
        <unit-price currency="GBP">64.99</unit-price>
        <merchant-item-id>28</merchant-item-id>
        <merchant-private-item-data>
          
          
          <item>YTo5OntzOjM6InF0eSI7aToxO3M6NDoibmFtZSI7czozMToiSElEIENvbnZlcnNpb24gS2l0IEgx
IDYwMDBLIDM1dyI7czo1OiJtb2RlbCI7czowOiIiO3M6MzoidGF4IjtpOjA7czoxNToidGF4X2Rlc2Nya
XB0aW9uIjtzOjE2OiJVbmtub3duIHRheCByYXRlIjtzOjU6InByaWNlIjtzOjc6IjY0Ljk5MDAiO3M6MT
E6ImZpbmFsX3ByaWNlIjtkOjY0Ljk4OTk5OTk5OTk5OTk5NDg4NDA5MjMwMjUyNzI3ODY2MTcyNzkwNTI
3MzQzNzU7czo2OiJ3ZWlnaHQiO3M6NDoiMS43MCI7czoyOiJpZCI7aToyODt9</item>
          
        
        </merchant-private-item-data>
      </item>
    </items>
    <merchant-private-data>
      
      
      <session-data>0641cb8124b6f5d88e95dc0bd99d7c80;osCsid</session-data>


this is top part of console.....sad.gif
futuremillions
Hello. Google links directly to the download area here. I was assuming their developers may be supporting it. However, I installed the contribution and have run into a problem. I am now getting the error below when the checkout page is clicked.

Checkout
What is Google Checkout?
* The Cart is empty
* DIR_FS_CATALOG and DIR_WS_MODULES may be wrong configured in includes/configure.php file. This dir doens't exists: /var/www/vhosts/missaccessories.com/httpdocsincludes/modules/shipping/.

Can someone please tell me what I have done incorrectly? My website is http://www.MissAccessories.com. Thanks in advance.
mrchain
QUOTE (Silverado05 @ Aug 11 2007, 05:33 PM) *
In order to contain all the support to one thread so I can accurately help those needing help with this module please post your support questions here and I will be more then happy to help you with this to best of my ability.

Contribution can be found below.

Google Checkout module for osCommerce

Current release is version 1.4 Dated 17 Jul 2007
FWR Media
As I've stated before Silverado05 can't help himself let alone others. This topic should never have been allowed the title "Official"
mrchain
QUOTE (Silverado05 @ Aug 11 2007, 05:33 PM) *
In order to contain all the support to one thread so I can accurately help those needing help with this module please post your support questions here and I will be more then happy to help you with this to best of my ability.

Contribution can be found below.

Google Checkout module for osCommerce

Current release is version 1.4 Dated 17 Jul 2007


hi, I am having trouble intergrating google check out to my website: www.mrchain.com
can some one please help me on how to download the module to except to payment type.
thanks so very much...patricia@mrchain
jonoscart
QUOTE (goody974 @ Feb 3 2008, 07:27 PM) *
Sure, its in catalog/includes/modules/payment/googlecheckout.php

The lines to create the DB are :-
CODE
    tep_db_query("create table if not exists ". $this->table_name ." (customers_id int(11), buyer_id bigint(20))");
    tep_db_query("create table if not exists ". $this->table_order ." (orders_id int(11), google_order_number bigint(20), order_amount decimal(15,4))");

The file size for this particular file on the google code website is noticeably larger than that on the OSC website, but I havent done a full compare so I couldnt tell you all the differences.

HTH


I see exactly what you are talking about. There is also a lot of other code commented out too. This must be somones personal modifications. You think if I replaced that one file with the other version, it would do the trick. I guess there is only one way to find out. - One of us should update the contribution on the osc site

thanks
paramaniac
Hi guys, I've got google checkout installed but with the following error after changing my store's address:

QUOTE
<error serial-number="142ef5c8-2d28-4060-bdbd-9ddb4663b00e">
<error-message>
The address that you are shipping from is invalid. Please send a correct US address.
</error-message>
</error>


How can I get it to accept my (UK) address?

Alex.

(PS: tried searching the forum but with no luck, surely someone else has had the same problem?!)
gsimerlink
Hi, I'm having a problem I did see listed in this thread at all. Everything seems set up on the admin side, but when I test things on my site I get this error:

Fatal error: Cannot instantiate non-existent class: shipping_methods in /catalog/googlecheckout/gcheckout.php on line 348

This shows up on the account login page, which seems very odd. Also when I get to the cart section Google cart does not show up as a payment option. I've reloaded the module a few times are rechecked the install instructions, but nothing seems to help. Does anybody have any ideas?

Thanks,

Greg
none_uk
Hi i'm getting http 400 bad requestion with IE but Ok with firefox

tried all the fix i can find in GCO forums but didnt work for me.

can any one help me please?
none_uk
QUOTE (none_uk @ Feb 8 2008, 01:54 AM) *
Hi i'm getting http 400 bad requestion with IE but Ok with firefox

tried all the fix i can find in GCO forums but didnt work for me.

can any one help me please?



any one done this fix

http://groups.google.com/group/google-chec...dc95ae5ae596201
kevinb84
Hello,

When I go to purchase an item I get this error at the checkout screen

* DIR_FS_CATALOG and DIR_WS_MODULES may be wrong configured in
includes/configure.php file. This dir doens't exists: /home/babypris/
public_html/catalogincludes/modules/shipping/

When going through the installation steps I do not recall changing the
configure.php file. Also I noticed the path it says is missing a back
slash after catalog. If this is the problem where would I be able to
edit this?

Thanks in advance,
-Kevin
threshold
Does anyone know if Google checkout works with USPS Priority mail? It seems to be installed correctly - no error messages and Express mail is working - but Priority always comes up $1.00.
Thanks in advance.
paramaniac
How do I get an option for Google checkout on the 'checkout_payment.php' page under the 'payment method' heading? I want to be able to do this so that when people select google checkout on this page, the price sent to google checkout includes the shipping amount.

Please can someone help me out with this. I'm sure there is an easy fix for this, it is just beyond my capabilites!!!

Alex.
none_uk
QUOTE (paramaniac @ Feb 12 2008, 03:59 PM) *
How do I get an option for Google checkout on the 'checkout_payment.php' page under the 'payment method' heading? I want to be able to do this so that when people select google checkout on this page, the price sent to google checkout includes the shipping amount.

Please can someone help me out with this. I'm sure there is an easy fix for this, it is just beyond my capabilites!!!

Alex.


u cannot, google have made it that way
paramaniac
QUOTE (none_uk @ Feb 12 2008, 07:14 PM) *
u cannot, google have made it that way


OK.

It says on the google checkout contributions page that it has shipping support including table rates, which is what I'm using for my products in oscommerce. How do I set this up? The only thing I can see to do with shipping is the carrier calculated shipping on the google checkout admin page.

Are there any instructions out there? I can't seem to find any.

Im proper stuck!

Alex.
none_uk
QUOTE (paramaniac @ Feb 13 2008, 11:32 AM) *
OK.

It says on the google checkout contributions page that it has shipping support including table rates, which is what I'm using for my products in oscommerce. How do I set this up? The only thing I can see to do with shipping is the carrier calculated shipping on the google checkout admin page.

Are there any instructions out there? I can't seem to find any.

Im proper stuck!

Alex.


https://demo.globant.com/~brovagnati/tools/

Web Shipping Method Generator <---use this and put the names of your shipping modules
rs2k
For those of you who are not getting their orders updated:

You have to go into your Google Dashboard.

Go to settings.

Go to Integration.

Put in your API callback URL:

It looks like this: https://***YOUR SECURE DOMAIN***/googlecheckout/responsehandler.php

Put in your actual secure domain in place of ***YOUR SECURE DOMAIN***.


Remember, the settings in your sandbox are separate from the settings in your real account. You have to make changes for both.
supernoc
Greetings,

I just shipped my first order that utilized GoogleCheckout (woot!) After marking the order as shipped in the Google website interface, my oscommerce order was updated with the following

QUOTE
Time: 2008-02-20T23:51:12.000Z
New State: DELIVERED
Order was Shipped.


Has anyone else experienced this? Thank you in advance
paramaniac
I'm getting this error when updating the status of and deleting normal oscommerce (not google checkout) orders in the admin interface:

CODE
1146 - Table 'floodsto_oscommerce.google_orders' doesn't exist

select google_order_number from google_orders where orders_id= 2

[TEP STOP]


The status of the orders does actually update and they are deleted but the above error appears after doing so. Also, there is no email sent to the customer stating that the order status has been updated (proccessed, delivered etc.)

Whats wrong and can anyone help?
paramaniac
Just checked my database and it came up with:

CODE
floodsto_oscommerce.address_book                   OK
floodsto_oscommerce.address_format                 OK
floodsto_oscommerce.administrators                 OK
floodsto_oscommerce.banners                        OK
floodsto_oscommerce.banners_history                OK
floodsto_oscommerce.categories                     OK
floodsto_oscommerce.categories_description         OK
floodsto_oscommerce.configuration                  OK
floodsto_oscommerce.configuration_group            OK
floodsto_oscommerce.counter                        OK
floodsto_oscommerce.counter_history                OK
floodsto_oscommerce.countries                      OK
floodsto_oscommerce.currencies                     OK
floodsto_oscommerce.customers                      OK
floodsto_oscommerce.customers_basket               OK
floodsto_oscommerce.customers_basket_attributes    OK
floodsto_oscommerce.customers_info                 OK
floodsto_oscommerce.geo_zones                      OK
floodsto_oscommerce.languages                      OK
floodsto_oscommerce.manufacturers                  OK
floodsto_oscommerce.manufacturers_info             OK
floodsto_oscommerce.newsletters                    OK
floodsto_oscommerce.orders                         OK
floodsto_oscommerce.orders_products                OK
floodsto_oscommerce.orders_products_attributes     OK
floodsto_oscommerce.orders_products_download       OK
floodsto_oscommerce.orders_status                  OK
floodsto_oscommerce.orders_status_history          OK
floodsto_oscommerce.orders_total                   OK
floodsto_oscommerce.products                       OK
floodsto_oscommerce.products_attributes            OK
floodsto_oscommerce.products_attributes_download   OK
floodsto_oscommerce.products_description           OK
floodsto_oscommerce.products_notifications         OK
floodsto_oscommerce.products_options               OK
floodsto_oscommerce.products_options_values        OK
floodsto_oscommerce.products_options_values_to_products_options OK
floodsto_oscommerce.products_to_categories         OK
floodsto_oscommerce.reviews                        OK
floodsto_oscommerce.reviews_description            OK
floodsto_oscommerce.sessions                       OK
floodsto_oscommerce.specials                       OK
floodsto_oscommerce.tax_class                      OK
floodsto_oscommerce.tax_rates                      OK
floodsto_oscommerce.whos_online
warning  : 1 client is using or hasn't closed the table properly
status   : OK
floodsto_oscommerce.zones                          OK
floodsto_oscommerce.zones_to_geo_zones             OK


Has the google checkout script not inserted the tables in the database?

Help!
Natalka27
My google checkout works in both testing and production but when you coming back from google shopping cart still hold information and not being updated mad.gif and I don't get anything updated in admin site, no orders coming to my os from google. Tried everything I can found on the issue, no luck blink.gif
If someone have any idea how to fix it, PLEASE HELP
rs2k
QUOTE (Natalka27 @ Feb 23 2008, 12:46 AM) *
My google checkout works in both testing and production but when you coming back from google shopping cart still hold information and not being updated mad.gif and I don't get anything updated in admin site, no orders coming to my os from google. Tried everything I can found on the issue, no luck blink.gif
If someone have any idea how to fix it, PLEASE HELP


Check out the post a little ways up. Click here to go to Post 391.

See if that might be the cause.
rjckicks1
EDIT: Just noticed ppl are posting answer for this I will try their techniques and reply if it dosen't work.

I just installed the latest google checkout but am having a problem with it.

I can process orders just fine in sanbox and live mode, but after order is processed I go to the admin section under Orders to find the order and it does not show the order. So it is not fully processing the order I guess? I even tried using the original files that come with the download instead of editing my files, and that also produced the same result (nothing under orders in admin).

If I don't enable the .ht basic access it will ask me for username and password to access responsehandler.php. If I turn that on then it will show the invalid message like it's supposed to.

Ive tried both with and without ht basic access turned on, and also I've tried with my manually edited files and with all the files that came pre-made with the mod and either way it will not add the order to the admin orders page. Can anyone advise some help for this?

Thanks
rs2k
QUOTE (rjckicks1 @ Feb 23 2008, 01:24 PM) *
EDIT: Just noticed ppl are posting answer for this I will try their techniques and reply if it dosen't work.

I just installed the latest google checkout but am having a problem with it.

I can process orders just fine in sanbox and live mode, but after order is processed I go to the admin section under Orders to find the order and it does not show the order. So it is not fully processing the order I guess? I even tried using the original files that come with the download instead of editing my files, and that also produced the same result (nothing under orders in admin).

If I don't enable the .ht basic access it will ask me for username and password to access responsehandler.php. If I turn that on then it will show the invalid message like it's supposed to.

Ive tried both with and without ht basic access turned on, and also I've tried with my manually edited files and with all the files that came pre-made with the mod and either way it will not add the order to the admin orders page. Can anyone advise some help for this?

Thanks


Check out the post a little ways up. Click here to go to Post 391.

See if that might be the cause.
Natalka27
I have done that all information verified and still no orders in admin mad.gif
Anybody have the same problem and able to fix it?
getopt
QUOTE (Natalka27 @ Feb 23 2008, 10:14 PM) *
I have done that all information verified and still no orders in admin mad.gif
Anybody have the same problem and able to fix it?



I got the same problem too , I tried to put API CallBack url ,but when I click it ,it redirect me to shopping cart whistling.gif , I know it's supposed to redirect me to checkout_success.php ,right ?hehehehe,please help me
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.