My favorites | Sign in
Google
                
Details: Show all Hide all

Last 7 days

  • Jul 08, 2009
    issue 84 (order total problem) reported by qcompconsultant   -   order total like coupon discount and shipping not passed to google. error may be here.. gcheckout.php $Gitem = new GoogleItem($order_total['title'], '', '1', $currencies->get_value(DEFAULT_CURRENCY) * $products[$i]['final_price'], 'LB', 0); this variable $products[$i]['final_price'] has no value here. ???????
    order total like coupon discount and shipping not passed to google. error may be here.. gcheckout.php $Gitem = new GoogleItem($order_total['title'], '', '1', $currencies->get_value(DEFAULT_CURRENCY) * $products[$i]['final_price'], 'LB', 0); this variable $products[$i]['final_price'] has no value here. ???????

Last 30 days

  • Jul 02, 2009
    issue 83 (Syntax error in 'includes/modules/payment/googlecheckout.php...) reported by d...@danceswithkleer.com   -   What steps will reproduce the problem? 1. Follow the installation steps for a modified install and during the initial reading of the module into the database the db insert query will fail due to a couple of things: - 1. The table title is too long for the default field settings. People will need to increase this to be able to handle the length of that string. - 2. The mysql function 'now()' being wrapped in single quotes will cause a syntax error. I fixed it by changing this in 'includes/modules/payment/googlecheckout.php': $value_array = array($title, $key, $default_value, $description, $group_id, $sort_order, 'now()'); if (!is_null($set_function)) { $value_array[] = $set_function; } $value_list = "('" . join("', '", $value_array) . "')"; to this: $value_array = array($title, $key, $default_value, $description, $group_id, $sort_order, 'now()'); if (!is_null($set_function)) { $value_array[] = $set_function; } $values_fixed = "'" . join("', '", $value_array) . "'"; $values_fixed = str_replace("'now()'", 'now()', $values_fixed); $value_list = "(" . $values_fixed . ")"; I'm sure there are other ways, but it works. After fixing this issue I ran into another trying to install the module, 'Fatal error: Cannot redeclare class googlecheckout...' The only way I found this was to temporarily comment out the redirect after the install step to see what was going on since the redirect after the install hides it. It was failing because of multiple configuration keys added to the configuration table with the same name during my fixing of the above issues, therefore trying to load the same module multiple times. Not normally the first place you look for what initially appears to be an include problem...
    What steps will reproduce the problem? 1. Follow the installation steps for a modified install and during the initial reading of the module into the database the db insert query will fail due to a couple of things: - 1. The table title is too long for the default field settings. People will need to increase this to be able to handle the length of that string. - 2. The mysql function 'now()' being wrapped in single quotes will cause a syntax error. I fixed it by changing this in 'includes/modules/payment/googlecheckout.php': $value_array = array($title, $key, $default_value, $description, $group_id, $sort_order, 'now()'); if (!is_null($set_function)) { $value_array[] = $set_function; } $value_list = "('" . join("', '", $value_array) . "')"; to this: $value_array = array($title, $key, $default_value, $description, $group_id, $sort_order, 'now()'); if (!is_null($set_function)) { $value_array[] = $set_function; } $values_fixed = "'" . join("', '", $value_array) . "'"; $values_fixed = str_replace("'now()'", 'now()', $values_fixed); $value_list = "(" . $values_fixed . ")"; I'm sure there are other ways, but it works. After fixing this issue I ran into another trying to install the module, 'Fatal error: Cannot redeclare class googlecheckout...' The only way I found this was to temporarily comment out the redirect after the install step to see what was going on since the redirect after the install hides it. It was failing because of multiple configuration keys added to the configuration table with the same name during my fixing of the above issues, therefore trying to load the same module multiple times. Not normally the first place you look for what initially appears to be an include problem...

Earlier this year

  • May 29, 2009
    issue 82 (Using 'Shipping Zone option' with US territories included) reported by atnaples   -   What steps will reproduce the problem? 1. Create a zone with all US states 2. Add Puerto Rico to the same zone, so it will be registered twice: as a US (US/PR) state and as a country (PR/All States). 3. Try to set up for the merchant carrier use the 'Shipping Zone'. You will receive the most popular message 'Oops...' What is the expected output? What do you see instead? I would expect to get the shipping module enable for the zone and let customer to register as from US/PR "state" or from PR. Most likely there will be the same issue for all/most US territories. What version of the product are you using? On what operating system? Please provide any additional information below. The problem with AddAllowedPostalArea: the system does not except the blank 'postal pattern'. If change the declaration as follows: AddAllowedPostalArea($country_code, $postal_pattern = "*"), everything will be fine.
    What steps will reproduce the problem? 1. Create a zone with all US states 2. Add Puerto Rico to the same zone, so it will be registered twice: as a US (US/PR) state and as a country (PR/All States). 3. Try to set up for the merchant carrier use the 'Shipping Zone'. You will receive the most popular message 'Oops...' What is the expected output? What do you see instead? I would expect to get the shipping module enable for the zone and let customer to register as from US/PR "state" or from PR. Most likely there will be the same issue for all/most US territories. What version of the product are you using? On what operating system? Please provide any additional information below. The problem with AddAllowedPostalArea: the system does not except the blank 'postal pattern'. If change the declaration as follows: AddAllowedPostalArea($country_code, $postal_pattern = "*"), everything will be fine.
  • May 29, 2009
    issue 81 (USPS shipping gquotes for the product lighter than .5 lb (8 ...) reported by atnaples   -   What steps will reproduce the problem? 1. Carrie Calculation is enabled 2. The product must have weight less than 8 oz (.5 lb). Not equal What is the expected output? What do you see instead? I would expect the real-time quotes from US Mail, but instead, GC will show the default shipping rates set up in admin What version of the product are you using? On what operating system? GC is the latest from the Google web site. Please provide any additional information below. The problem with rounding numbers, because if the weight is more than 8 oz (> .5 lb) it will be rounded to 1 lb, and the system will provide the correct data.
    What steps will reproduce the problem? 1. Carrie Calculation is enabled 2. The product must have weight less than 8 oz (.5 lb). Not equal What is the expected output? What do you see instead? I would expect the real-time quotes from US Mail, but instead, GC will show the default shipping rates set up in admin What version of the product are you using? On what operating system? GC is the latest from the Google web site. Please provide any additional information below. The problem with rounding numbers, because if the weight is more than 8 oz (> .5 lb) it will be rounded to 1 lb, and the system will provide the correct data.
  • May 20, 2009
    issue 55 (Google Checkout on osCommerce will not appear as a selectabl...) commented on by bmstore114   -   exactly the same problem I am having. any solutions? any help is greatly appreciated.
    exactly the same problem I am having. any solutions? any help is greatly appreciated.
  • May 20, 2009
    issue 80 (Unmodified osCommerce broken files?) commented on by bmstore114   -   1. Fresh install OSC 2.2 RC2a 2. Fresh install GCO module 1.5.0 3. Test Server s15261756.onlinehome-server.com willing to provide ftp and Admin access.
    1. Fresh install OSC 2.2 RC2a 2. Fresh install GCO module 1.5.0 3. Test Server s15261756.onlinehome-server.com willing to provide ftp and Admin access.
  • May 20, 2009
    issue 80 (Unmodified osCommerce broken files?) reported by bmstore114   -   What steps will reproduce the problem? 1. Unmodified osCommerce 2. If you are using the basic osCommerce installation without any other modules or add-ons, simply copy the provided files into your osCommerce directory, preserving the file structure. Did that at test server 3. I overwrite my osCommerce v2.2, RC 2a with out of the box files provided by google with out any modifications. What is the expected output? What do you see instead? As you can see on the site s15261756.onlinehome-server.com the Google checkout button appears, but won't link to google during checkout. Even with merchant id and key entered. It keeps going in a continuous checkout loop. Other posts suggest it is a result of broken <form></form> tags in the files provided. What version of the product are you using? On what operating system? Server Information Server Host: s15261756.onlinehome-server.com (127.0.0.1) Database Host: localhost (127.0.0.1) Server OS: Linux 2.6.9-023stab048.6-smp Database: MySQL 4.1.20 Server Date: 05/20/2009 06:36:29 Datebase Date: 05/20/2009 06:36:29 Server Up Time: 06:36:29 up 4 days, 19:08, 0 users, load average: 0.00, 0.00, 0.00 HTTP Server: Apache/2.0.54 (Fedora) PHP Version: 5.0.4 (Zend: 2.0.4-dev) Please provide any additional information below.
    What steps will reproduce the problem? 1. Unmodified osCommerce 2. If you are using the basic osCommerce installation without any other modules or add-ons, simply copy the provided files into your osCommerce directory, preserving the file structure. Did that at test server 3. I overwrite my osCommerce v2.2, RC 2a with out of the box files provided by google with out any modifications. What is the expected output? What do you see instead? As you can see on the site s15261756.onlinehome-server.com the Google checkout button appears, but won't link to google during checkout. Even with merchant id and key entered. It keeps going in a continuous checkout loop. Other posts suggest it is a result of broken <form></form> tags in the files provided. What version of the product are you using? On what operating system? Server Information Server Host: s15261756.onlinehome-server.com (127.0.0.1) Database Host: localhost (127.0.0.1) Server OS: Linux 2.6.9-023stab048.6-smp Database: MySQL 4.1.20 Server Date: 05/20/2009 06:36:29 Datebase Date: 05/20/2009 06:36:29 Server Up Time: 06:36:29 up 4 days, 19:08, 0 users, load average: 0.00, 0.00, 0.00 HTTP Server: Apache/2.0.54 (Fedora) PHP Version: 5.0.4 (Zend: 2.0.4-dev) Please provide any additional information below.
  • May 16, 2009
    issue 79 (Have 1.5 installed and can not save install from admin modul...) reported by herasonlinemarket   -   What steps will reproduce the problem? 1. installing the 1.5 2. 3. What is the expected output? What do you see instead? I see the file attached and what i want to see is the second file attached. What version of the product are you using? On what operating system? 1.5 Ubuntu linux Please provide any additional information below. I have looked at the module/payment/googlecheckout.php file for any reason I would get the blue underlines when I go to set up the google checkout. in the admin under modules. I even went to the source area here and copied and pasted the contents in my googlecheckout.php and still the same thing. I don't know where to look or go from here. I sure hope you can help me.. I upgraded from 1.4 because I could have more than one shipping price.. and this verison looked as if I could. thank you your help..and any thing eles I can provide you i WILL BE happy to --to get this working.
    What steps will reproduce the problem? 1. installing the 1.5 2. 3. What is the expected output? What do you see instead? I see the file attached and what i want to see is the second file attached. What version of the product are you using? On what operating system? 1.5 Ubuntu linux Please provide any additional information below. I have looked at the module/payment/googlecheckout.php file for any reason I would get the blue underlines when I go to set up the google checkout. in the admin under modules. I even went to the source area here and copied and pasted the contents in my googlecheckout.php and still the same thing. I don't know where to look or go from here. I sure hope you can help me.. I upgraded from 1.4 because I could have more than one shipping price.. and this verison looked as if I could. thank you your help..and any thing eles I can provide you i WILL BE happy to --to get this working.
  • May 06, 2009
    issue 78 (Confirmation Receipt Deleted in Error) reported by chihualover   -   What steps will reproduce the problem? 1. Deleting the confirmation receipt 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I am the customer & I deleted the confirmation of receipt in error. The shipper cannot be paid - what do I do now. My credit card has been charged but they cannot get paid.
    What steps will reproduce the problem? 1. Deleting the confirmation receipt 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I am the customer & I deleted the confirmation of receipt in error. The shipper cannot be paid - what do I do now. My credit card has been charged but they cannot get paid.
  • May 06, 2009
    issue 77 (Confirmation Receipt Deleted in Error) reported by chihualover   -   What steps will reproduce the problem? 1. Deleting the confirmation receipt 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I am the customer & I deleted the confirmation of receipt in error. The shipper cannot be paid - what do I do now. My credit card has been charged but they cannot get paid.
    What steps will reproduce the problem? 1. Deleting the confirmation receipt 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I am the customer & I deleted the confirmation of receipt in error. The shipper cannot be paid - what do I do now. My credit card has been charged but they cannot get paid.
  • Apr 18, 2009
    issue 76 (callback to responsehandler.php error) reported by test_o...@verizon.net   -   Orders not returned to Admin using PHP CGI, sandBox orders are logged in to sandBox, email confirmations are sent to buyer and seller, return to catalog link to gc_return.php....all works... What steps will reproduce the problem? googlecheckout/.htaccess - set with merchant id, merchant key API callback URL to:https://domain/catalog/googlecheckout/responsehandler.php callback method: xml callback fails, When I go to responsehandler.php error log, I get this syntax error: Parse error: syntax error, unexpected T_DEFAULT in domain/catalog/ googlecheckout/responsehandler.php on line 1154 sandBox > Tools > Integration Console says: We encountered an error trying to access your server at https://domain.com/catalog/googlecheckout/responsehandler.php -- the error we got is java.net.MalformedURLException: no protocol: /~user/catalog/googlecheckout/responsehandler.php What version of the product are you using? On what operating system? PHP CGI PHP version: 5.2.9 MySQL: 5.0.75 Apache: 2.2.11 OSc: 2.2.RC.2a Google Checkout: 1.5.0
    Orders not returned to Admin using PHP CGI, sandBox orders are logged in to sandBox, email confirmations are sent to buyer and seller, return to catalog link to gc_return.php....all works... What steps will reproduce the problem? googlecheckout/.htaccess - set with merchant id, merchant key API callback URL to:https://domain/catalog/googlecheckout/responsehandler.php callback method: xml callback fails, When I go to responsehandler.php error log, I get this syntax error: Parse error: syntax error, unexpected T_DEFAULT in domain/catalog/ googlecheckout/responsehandler.php on line 1154 sandBox > Tools > Integration Console says: We encountered an error trying to access your server at https://domain.com/catalog/googlecheckout/responsehandler.php -- the error we got is java.net.MalformedURLException: no protocol: /~user/catalog/googlecheckout/responsehandler.php What version of the product are you using? On what operating system? PHP CGI PHP version: 5.2.9 MySQL: 5.0.75 Apache: 2.2.11 OSc: 2.2.RC.2a Google Checkout: 1.5.0
  • Apr 10, 2009
    ReadMe_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - R...) Wiki page edited by alek.dembowski
  • Apr 08, 2009
    issue 75 (Not being returned to gc_return.php and orders not showing i...) reported by p...@laser-tool.com   -   When an order is placed it "sometimes" showes up under administration in oscommerce. It does not work everytime. I also had it with the previous version of google checkout. I am only using the sandbox account. What steps will reproduce the problem? What seems to be the case is the following; Callback method: XML 1) Place an order. RESULT: Get the page that says "Thanks, you're done! Return to (my oscommerce site)." 2) Click on link to return to my oscommerce site. RESULT: Sent to ".../catalog/login.php" Should have been sent to "/catalog/gc_return.php?products_id=28" The order shows in "/googlecheckout/logs/respons_message.log" properly. No errors are reported in "/googlecheckout/logs/response_error.log" Order does not display in oscommerce Administration. Callback method: HTML 1) Place a NEW order. Pretend it is order number xxx123 RESULT: Get the page that says "Thanks, you're done! Return to "your oscommerce site". 2) Click on link to return to the oscommerce site. RESULT: Sent to "/catalog/gc_return.php?products_id=28" The order shows (I believe incorrectly) all on a single line in "/googlecheckout/logs/respons_message.log" The error mesage "Invalid or not supported Message" is reported in "/googlecheckout/logs/response_error.log" 3) Switch callback method to XML RESULT: after some time has passed The order number xxx123 now shows in "/googlecheckout/logs/respons_message.log" properly. No errors are reported in "/googlecheckout/logs/response_error.log" The order number xxx123 is shown in oscommerce's Admistration orders section. What version of the product are you using? On what operating system? PHP Version: 5.2.6 (Zend: 2.2.0) MySQL 4.1.22-standard-log Apache version 2.2.9 (Unix) OScommerce v2.2 RC2
    When an order is placed it "sometimes" showes up under administration in oscommerce. It does not work everytime. I also had it with the previous version of google checkout. I am only using the sandbox account. What steps will reproduce the problem? What seems to be the case is the following; Callback method: XML 1) Place an order. RESULT: Get the page that says "Thanks, you're done! Return to (my oscommerce site)." 2) Click on link to return to my oscommerce site. RESULT: Sent to ".../catalog/login.php" Should have been sent to "/catalog/gc_return.php?products_id=28" The order shows in "/googlecheckout/logs/respons_message.log" properly. No errors are reported in "/googlecheckout/logs/response_error.log" Order does not display in oscommerce Administration. Callback method: HTML 1) Place a NEW order. Pretend it is order number xxx123 RESULT: Get the page that says "Thanks, you're done! Return to "your oscommerce site". 2) Click on link to return to the oscommerce site. RESULT: Sent to "/catalog/gc_return.php?products_id=28" The order shows (I believe incorrectly) all on a single line in "/googlecheckout/logs/respons_message.log" The error mesage "Invalid or not supported Message" is reported in "/googlecheckout/logs/response_error.log" 3) Switch callback method to XML RESULT: after some time has passed The order number xxx123 now shows in "/googlecheckout/logs/respons_message.log" properly. No errors are reported in "/googlecheckout/logs/response_error.log" The order number xxx123 is shown in oscommerce's Admistration orders section. What version of the product are you using? On what operating system? PHP Version: 5.2.6 (Zend: 2.2.0) MySQL 4.1.22-standard-log Apache version 2.2.9 (Unix) OScommerce v2.2 RC2
  • Apr 05, 2009
    issue 19 (HTTP Basic Authentication failed.) commented on by alimulrazi28   -   fucks facks
    fucks facks
  • Apr 01, 2009
    issue 72 (1146 - Table 'spaandbeauty_db.google_configuration' doesn't ...) commented on by gmhsphil   -   I fix the issue, I made both comparisons from old version to the latest one version 1.5 rc-1, just make sure unistall the old one from admin and all old files from server, then install the first one by downloading the latest zip file here and unzip inside the server ( I am using Cpanel), make sure your googlecheckout.php is in the right permission (644) Hope it helps.
    I fix the issue, I made both comparisons from old version to the latest one version 1.5 rc-1, just make sure unistall the old one from admin and all old files from server, then install the first one by downloading the latest zip file here and unzip inside the server ( I am using Cpanel), make sure your googlecheckout.php is in the right permission (644) Hope it helps.
  • Mar 29, 2009
    issue 72 (1146 - Table 'spaandbeauty_db.google_configuration' doesn't ...) commented on by feodora.linux   -   I know how exactly fix issue.
    I know how exactly fix issue.
  • Mar 26, 2009
    issue 74 (file permissions) Status changed by ed.davisson   -   That is the correct solution. I've updated the installation instructions to include this step. Sorry for the trouble.
    Status: Done
    That is the correct solution. I've updated the installation instructions to include this step. Sorry for the trouble.
    Status: Done
  • Mar 26, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 26, 2009
    r237 (Remove duplicate log files (these now live under a subdirect...) committed by ed.davisson   -   Remove duplicate log files (these now live under a subdirectory: googlecheckout/logs)
    Remove duplicate log files (these now live under a subdirectory: googlecheckout/logs)
  • Mar 26, 2009
    issue 74 (file permissions) reported by hilburn...@gannon.edu   -   What steps will reproduce the problem? 1. fresh install of oscommerce 2. apply googlecheckout v1.5_rc1 3. browse to .../catalog/admin/ 4. Select "Modules" What is the expected output? no error messages What do you see instead? The following warnings about "...Permission denied..." for 3 files. Warning: fopen (/home/laserdri/public_html/catalog/googlecheckout/feeds/products- static.xml) [function.fopen]: failed to open stream: Permission denied in /home/laserdri/public_html/catalog/googlecheckout/library/google_cron_ho ok.php on line 48 Warning: fopen (/home/laserdri/public_html/catalog/googlecheckout/feeds/sitemap- static.xml) [function.fopen]: failed to open stream: Permission denied in /home/laserdri/public_html/catalog/googlecheckout/library/google_cron_ho ok.php on line 56 Warning: fopen (/home/laserdri/public_html/catalog/googlecheckout/logs/last_updated.log) [function.fopen]: failed to open stream: Permission denied in /home/laserdri/public_html/catalog/googlecheckout/library/google_cron_ho ok.php on line 63 What version of the product are you using? On what operating system? Please provide any additional information below. Warnings do not occur if file permissions are changed to 777 for products-static.xml sitemap-static.xml last_updated.log But is this the correct solution?
    What steps will reproduce the problem? 1. fresh install of oscommerce 2. apply googlecheckout v1.5_rc1 3. browse to .../catalog/admin/ 4. Select "Modules" What is the expected output? no error messages What do you see instead? The following warnings about "...Permission denied..." for 3 files. Warning: fopen (/home/laserdri/public_html/catalog/googlecheckout/feeds/products- static.xml) [function.fopen]: failed to open stream: Permission denied in /home/laserdri/public_html/catalog/googlecheckout/library/google_cron_ho ok.php on line 48 Warning: fopen (/home/laserdri/public_html/catalog/googlecheckout/feeds/sitemap- static.xml) [function.fopen]: failed to open stream: Permission denied in /home/laserdri/public_html/catalog/googlecheckout/library/google_cron_ho ok.php on line 56 Warning: fopen (/home/laserdri/public_html/catalog/googlecheckout/logs/last_updated.log) [function.fopen]: failed to open stream: Permission denied in /home/laserdri/public_html/catalog/googlecheckout/library/google_cron_ho ok.php on line 63 What version of the product are you using? On what operating system? Please provide any additional information below. Warnings do not occur if file permissions are changed to 777 for products-static.xml sitemap-static.xml last_updated.log But is this the correct solution?
  • Mar 26, 2009
    issue 73 (works on wampserver. deploy to live server...does not work) commented on by hilburn...@gannon.edu   -   Solved. Need to upload php files as text files. FILEZILA works.
    Solved. Need to upload php files as text files. FILEZILA works.
  • Mar 26, 2009
    issue 72 (1146 - Table 'spaandbeauty_db.google_configuration' doesn't ...) commented on by hilburn...@gannon.edu   -   I had the same issue. It went away when I made sure to upload php files as ascii files using filezilla.
    I had the same issue. It went away when I made sure to upload php files as ascii files using filezilla.
  • Mar 25, 2009
    issue 73 (works on wampserver. deploy to live server...does not work) reported by hilburn...@gannon.edu   -   What steps will reproduce the problem? 1. creat fresh install of osc in wampserver 2. run v1.5_rc1\install.bat 3. issure does not occur in wampserver only after move to live server. 4. browse to localhost\catalog\admin no problems. 5. browse to domainname.com\catalog\admin and problem occurs. What is the expected output? see the admin page for oscommerce What do you see instead? Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/--- /public_html/catalog/admin/includes/functions/general.php:2520) in /home/-- -/public_html/catalog/admin/includes/functions/sessions.php on line 102 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/--- /public_html/catalog/admin/includes/functions/general.php:2520) in /home/-- -/public_html/catalog/admin/includes/functions/sessions.php on line 102 Warning: Cannot modify header information - headers already sent by (output started at /home/--- /public_html/catalog/admin/includes/functions/general.php:2520) in /home/-- -/public_html/catalog/admin/includes/functions/general.php on line 41 What version of the product are you using? On what operating system? PHP Version: 5.2.6 (Zend: 2.2.0) MySQL 4.1.22-standard-log Apache version 2.2.9 (Unix) OScommerce v2.2 RC2 Please provide any additional information below. When browsing to domainname.com/catalog and clicking "buy now" the following is displayed: 1146 - Table 'laserdri_osc1.google_configuration' doesn't exist select google_configuration_value from google_configuration where google_configuration_key='' [TEP STOP] NOTE: everything works fine in wampserver
    What steps will reproduce the problem? 1. creat fresh install of osc in wampserver 2. run v1.5_rc1\install.bat 3. issure does not occur in wampserver only after move to live server. 4. browse to localhost\catalog\admin no problems. 5. browse to domainname.com\catalog\admin and problem occurs. What is the expected output? see the admin page for oscommerce What do you see instead? Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/--- /public_html/catalog/admin/includes/functions/general.php:2520) in /home/-- -/public_html/catalog/admin/includes/functions/sessions.php on line 102 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/--- /public_html/catalog/admin/includes/functions/general.php:2520) in /home/-- -/public_html/catalog/admin/includes/functions/sessions.php on line 102 Warning: Cannot modify header information - headers already sent by (output started at /home/--- /public_html/catalog/admin/includes/functions/general.php:2520) in /home/-- -/public_html/catalog/admin/includes/functions/general.php on line 41 What version of the product are you using? On what operating system? PHP Version: 5.2.6 (Zend: 2.2.0) MySQL 4.1.22-standard-log Apache version 2.2.9 (Unix) OScommerce v2.2 RC2 Please provide any additional information below. When browsing to domainname.com/catalog and clicking "buy now" the following is displayed: 1146 - Table 'laserdri_osc1.google_configuration' doesn't exist select google_configuration_value from google_configuration where google_configuration_key='' [TEP STOP] NOTE: everything works fine in wampserver
  • Mar 25, 2009
    issue 72 (1146 - Table 'spaandbeauty_db.google_configuration' doesn't ...) commented on by djlisa   -   Great question, gmhsphil, that may solve the problem. Help anyone?
    Great question, gmhsphil, that may solve the problem. Help anyone?
  • Mar 24, 2009
    issue 72 (1146 - Table 'spaandbeauty_db.google_configuration' doesn't ...) commented on by gmhsphil   -   I have the same problem and I followed this instructions however the problem is still exists. On my database I found just two database tables: google_checkout and google_orders. If I will manually adding the table, what shoulb be inthere?
    I have the same problem and I followed this instructions however the problem is still exists. On my database I found just two database tables: google_checkout and google_orders. If I will manually adding the table, what shoulb be inthere?
  • Mar 18, 2009
    issue 69 (Yet another test issue.) Status changed by ed.davisson   -  
    Status: WontFix
    Status: WontFix
  • Mar 18, 2009
    issue 72 (1146 - Table 'spaandbeauty_db.google_configuration' doesn't ...) commented on by ed.davisson   -   Was this a fresh install or an update? The database table in question should have been created when you installed the module using osCommerce's admin UI (under 'Modules -> Payment -> GoogleCheckout', click 'install'). If this is an upgrade, you may need to click 'remove' and then 'install' again. Note that you will have to re-enter your configuration values, but this won't clear out any old orders.
    Was this a fresh install or an update? The database table in question should have been created when you installed the module using osCommerce's admin UI (under 'Modules -> Payment -> GoogleCheckout', click 'install'). If this is an upgrade, you may need to click 'remove' and then 'install' again. Note that you will have to re-enter your configuration values, but this won't clear out any old orders.
  • Mar 17, 2009
    issue 72 (1146 - Table 'spaandbeauty_db.google_configuration' doesn't ...) reported by djlisa   -   What steps will reproduce the problem? 1. Add item to cart, brought to What's in my cart? screen and this error shows below the update/continue shopping/checkout buttons: 1146 - Table 'spaandbeauty_db.google_configuration' doesn't exist select google_configuration_value from google_configuration where google_configuration_key='' [TEP STOP] What is the expected output? What do you see instead? No error. What version of the product are you using? On what operating system? osCommerce 2.2rc2a with Google Checkout Integration Module from Google Please provide any additional information below.
    What steps will reproduce the problem? 1. Add item to cart, brought to What's in my cart? screen and this error shows below the update/continue shopping/checkout buttons: 1146 - Table 'spaandbeauty_db.google_configuration' doesn't exist select google_configuration_value from google_configuration where google_configuration_key='' [TEP STOP] What is the expected output? What do you see instead? No error. What version of the product are you using? On what operating system? osCommerce 2.2rc2a with Google Checkout Integration Module from Google Please provide any additional information below.
  • Mar 16, 2009
    r236 (Minor adjustments to move us closer to the OSC golden files.) committed by ed.davisson   -   Minor adjustments to move us closer to the OSC golden files.
    Minor adjustments to move us closer to the OSC golden files.
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 16, 2009
    Installation_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - I...) Wiki page edited by ed.davisson
  • Mar 12, 2009
    issue 71 (GCO will not work with OSC) commented on by hellogoogoo   -   Maybe this should help. this is the responsehandler.php straight out of the package. Did everyone working on the contribution just not debug this? Parse error: syntax error, unexpected T_DEFAULT in C:\inetpub\wwwroot\hellogoogoo\responsehandler.php on line 1154
    Maybe this should help. this is the responsehandler.php straight out of the package. Did everyone working on the contribution just not debug this? Parse error: syntax error, unexpected T_DEFAULT in C:\inetpub\wwwroot\hellogoogoo\responsehandler.php on line 1154
  • Mar 12, 2009
    issue 71 (GCO will not work with OSC) reported by hellogoogoo   -   What steps will reproduce the problem? 1. Fresh install OSC 2.2 RC2a 2. Fresh install GCO module 1.5.0 3. Sandbox environment What is the expected output? What do you see instead? Send shopping cart to google, add shipping, return results to OSC admin What version of the product are you using? On what operating system? GCO module 1.5.0 on Redhat linux Please provide any additional information below. 1. Carrier calculated shipping is not getting declared/provided and returns an the OOPS error from google after clicking the google checkout button in OSC. The process goes no further. With this disabled I get a 500 internal server error. 2. Get a 500 internal server error because responsehandler.php has an error. An earlier release of responsehandler.php had a T_CASE error due to a missing } as noted on the releases on the forums of OSC. That package, however, did not send back all the items to OSC admin if there were more than 1 item thereby screwing up inventory counts cause items 2,3,etc quantities would not be subtracted from OSC. Though, the 500 internal error was corrected by adding proper syntax.
    What steps will reproduce the problem? 1. Fresh install OSC 2.2 RC2a 2. Fresh install GCO module 1.5.0 3. Sandbox environment What is the expected output? What do you see instead? Send shopping cart to google, add shipping, return results to OSC admin What version of the product are you using? On what operating system? GCO module 1.5.0 on Redhat linux Please provide any additional information below. 1. Carrier calculated shipping is not getting declared/provided and returns an the OOPS error from google after clicking the google checkout button in OSC. The process goes no further. With this disabled I get a 500 internal server error. 2. Get a 500 internal server error because responsehandler.php has an error. An earlier release of responsehandler.php had a T_CASE error due to a missing } as noted on the releases on the forums of OSC. That package, however, did not send back all the items to OSC admin if there were more than 1 item thereby screwing up inventory counts cause items 2,3,etc quantities would not be subtracted from OSC. Though, the 500 internal error was corrected by adding proper syntax.
  • Mar 11, 2009
    Documentation Wiki page deleted by ed.davisson
  • Mar 11, 2009
    r226 (Fix one file that got away.) committed by ed.davisson   -   Fix one file that got away.
    Fix one file that got away.
  • Mar 11, 2009
    r225 (Creating 1.5RC1 branch.) committed by ed.davisson   -   Creating 1.5RC1 branch.
    Creating 1.5RC1 branch.
  • Mar 11, 2009
    r224 (Merging 1.5dev into trunk.) committed by ed.davisson   -   Merging 1.5dev into trunk.
    Merging 1.5dev into trunk.
  • Mar 11, 2009
    r223 (Rolling back r222 so we can integrate to trunk.) committed by ed.davisson   -   Rolling back r222 so we can integrate to trunk.
    Rolling back r222 so we can integrate to trunk.
  • Mar 09, 2009
    issue 70 (Network Solutions SSL Problem) reported by andr...@circuitassembly.com   -   This is the error I get _________________________________ We encountered an error trying to access your server at https://estore.circuitassembly.com/truworth/catalog/googlecheckout/response handler.php -- the error we got is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: signature check failed __________________________________ I am using Network Solutions SSL and I came across something here with other people having the same problem and it was marked as resolved so I would like to know what the problem was and how to resolve it. I contacted Network Solutions about the problem and this was there response: -------------------------------------------------- Dear Andrew Lang, Since the the domain name is not NSI hosted and at this time the link shows "Shopping cart not obtained from session." there is no way to troubleshot the issue from our location. Have you spoken with support at Google to see if they are aware of any issues with the NSI SSL certificate and their platform? Thank you for your patience. We hope this update has been helpful. However, if you have any additional questions, or feel that the issue has not been completely addressed, please do not hesitate to email our Technical Support Department ------------------------------------------------------ I'm at a loss for what to do from here
    This is the error I get _________________________________ We encountered an error trying to access your server at https://estore.circuitassembly.com/truworth/catalog/googlecheckout/response handler.php -- the error we got is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: signature check failed __________________________________ I am using Network Solutions SSL and I came across something here with other people having the same problem and it was marked as resolved so I would like to know what the problem was and how to resolve it. I contacted Network Solutions about the problem and this was there response: -------------------------------------------------- Dear Andrew Lang, Since the the domain name is not NSI hosted and at this time the link shows "Shopping cart not obtained from session." there is no way to troubleshot the issue from our location. Have you spoken with support at Google to see if they are aware of any issues with the NSI SSL certificate and their platform? Thank you for your patience. We hope this update has been helpful. However, if you have any additional questions, or feel that the issue has not been completely addressed, please do not hesitate to email our Technical Support Department ------------------------------------------------------ I'm at a loss for what to do from here
  • Mar 09, 2009
    r222 (Revert a couple of spurious changes to the OSC files.) committed by ed.davisson   -   Revert a couple of spurious changes to the OSC files.
    Revert a couple of spurious changes to the OSC files.
  • Mar 09, 2009
    Support_1_5_0 (Google Checkout Module v1.5.0 for osCommerce v2.2, RC 2a - S...) Wiki page edited by alek.dembowski
  • Mar 06, 2009
    issue 26 (Issue resolve. ) commented on by andr...@circuitassembly.com   -   I have the same problem.. is there a solution? I also have Network Solutions.
    I have the same problem.. is there a solution? I also have Network Solutions.
  • Mar 03, 2009
    issue 65 (Calculated FedEx Shipping shows up as $1.00) commented on by sentinelo   -   I'm showing $1.00 shipping charge on usps express and priority shipping. Carrier calculated shipping set to True. Is there a fix to this issue?
    I'm showing $1.00 shipping charge on usps express and priority shipping. Carrier calculated shipping set to True. Is there a fix to this issue?
  • Mar 03, 2009
    Documentation Wiki page edited by alek.dembowski