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

Last 30 days

  • Dec 08, 2009
    issue 48 (How to us AdWords Conversion Tracking) reported by mariecon.d   -   I want to include the Adword Conversion Tracking on my site. I found this page: http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html#AWCT It describes using a parameterized URL to accomplish the task. Their example snippet: <merchant-checkout-flow-support> <parameterized-urls> <parameterized-url url="src="https://www.googleadservices.com/pagead/conversion/0062225003/? value=1&label=purchase&script=0"/> </parameterized-urls> ... </merchant-checkout-flow-support> Where should i add this code?
    I want to include the Adword Conversion Tracking on my site. I found this page: http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html#AWCT It describes using a parameterized URL to accomplish the task. Their example snippet: <merchant-checkout-flow-support> <parameterized-urls> <parameterized-url url="src="https://www.googleadservices.com/pagead/conversion/0062225003/? value=1&label=purchase&script=0"/> </parameterized-urls> ... </merchant-checkout-flow-support> Where should i add this code?
  • Dec 08, 2009
    Documentation Wiki page commented on by craig.leinoff   -   As another note, a lot of my problems were solved when I realized that require_once() functions in a number of files (as well as the RESPONSE_HANDLER_ERROR_LOG_FILE and RESPONSE_HANDLER_LOG_FILE variables in the responsehandler.php file) were not using the proper path on my server. Either due to configuration problems or some other means of my own incompetence, the ini_set() function was not giving the proper path.. So log files were not being generated and the XML parser files were not be included (required, really) correctly either.
    As another note, a lot of my problems were solved when I realized that require_once() functions in a number of files (as well as the RESPONSE_HANDLER_ERROR_LOG_FILE and RESPONSE_HANDLER_LOG_FILE variables in the responsehandler.php file) were not using the proper path on my server. Either due to configuration problems or some other means of my own incompetence, the ini_set() function was not giving the proper path.. So log files were not being generated and the XML parser files were not be included (required, really) correctly either.
  • Dec 08, 2009
    Documentation Wiki page commented on by craig.leinoff   -   For anyone who was having trouble getting responsehandler.php to charge the card once the "Chargeable" state is sent, I had to modify the sendAck (acknowledgment) method call: $Gresponse->SendAck(); I instead changed it to be: $Gresponse->SendAck(FALSE); The reason is because SendAck() takes a $die variable that defaults to true. I don't wholly get it, but if it dies, then the response handler file will stop processing, and it won't even do the switch for $new_financial_state.
    For anyone who was having trouble getting responsehandler.php to charge the card once the "Chargeable" state is sent, I had to modify the sendAck (acknowledgment) method call: $Gresponse->SendAck(); I instead changed it to be: $Gresponse->SendAck(FALSE); The reason is because SendAck() takes a $die variable that defaults to true. I don't wholly get it, but if it dies, then the response handler file will stop processing, and it won't even do the switch for $new_financial_state.

Earlier this year

  • Nov 25, 2009
    issue 37 (CheckoutServer2Server Munges the URL and Break URL Parameter...) commented on by karlnorman70   -   Parse error: syntax error, unexpected ';' in xxxxxxxx/xxxxxx/xxxxxxx/payments/google/library/googlerequest.php on line 135
    Parse error: syntax error, unexpected ';' in xxxxxxxx/xxxxxx/xxxxxxx/payments/google/library/googlerequest.php on line 135
  • Oct 12, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by zahidrafiqlhr   -   this info really help me a lot. It help me to fix my project bugs. http://www.healthgiants.com/
    this info really help me a lot. It help me to fix my project bugs. http://www.healthgiants.com/
  • Sep 22, 2009
    Documentation Wiki page commented on by gcheckoutsandbox   -   I have simple website and i want to integrate google checkout. I want the credit cart box and billing info on my website and when i press submit, i want to use the google checkout to check all the conditions and get me responce back, just like aurthorize.net. How can i do this?
    I have simple website and i want to integrate google checkout. I want the credit cart box and billing info on my website and when i press submit, i want to use the google checkout to check all the conditions and get me responce back, just like aurthorize.net. How can i do this?
  • Sep 18, 2009
    issue 47 (Description-based delivery is not available ) reported by petermclarke   -   What steps will reproduce the problem? 1. Create a cart 2. create an item: $item_1 = new GoogleItem($name, $desc, $quantity, $amount); 2. Set digital content for description only: $item_1->SetURLDigitalContent(false, false, 'instructions here'); 3. Add the item to the cart etc What is the expected output? checkout accepts the order and displays the instructions on completion. What do you see instead? <error-message>There must be some content in a digital content</error-message> What version of the product are you using? 1.2.5c On what operating system? Linux It happens because googlecart.php expects $item->digital_url if $item->digital_description is used. If no url is given then empty digital content is sent and so comes the error. Supplying a url means no error but does not then use the description-based delivery described in the docs. Solution: at line 457 of googlecart.php add: else if(!empty($item->digital_description)) { $xml_data->element('description', substr($item->digital_description, 0, MAX_DIGITAL_DESC)); }
    What steps will reproduce the problem? 1. Create a cart 2. create an item: $item_1 = new GoogleItem($name, $desc, $quantity, $amount); 2. Set digital content for description only: $item_1->SetURLDigitalContent(false, false, 'instructions here'); 3. Add the item to the cart etc What is the expected output? checkout accepts the order and displays the instructions on completion. What do you see instead? <error-message>There must be some content in a digital content</error-message> What version of the product are you using? 1.2.5c On what operating system? Linux It happens because googlecart.php expects $item->digital_url if $item->digital_description is used. If no url is given then empty digital content is sent and so comes the error. Supplying a url means no error but does not then use the description-based delivery described in the docs. Solution: at line 457 of googlecart.php add: else if(!empty($item->digital_description)) { $xml_data->element('description', substr($item->digital_description, 0, MAX_DIGITAL_DESC)); }
  • Sep 16, 2009
    issue 46 (Making Shipping & Handling free) reported by nirmalassyst   -   Hi, In googlecheckout ,currently Shipping & Handling costs are calculated by google.Anybody having any suggestions to make that free using coupons or promotional codes .Now we are using coupons via 'merchant-calculation-callback' method to give discounts. Similarly can we make the 'Shipping & Handling' free of cost or give a discount in 'Shipping & Handling' charges. Thank you
    Hi, In googlecheckout ,currently Shipping & Handling costs are calculated by google.Anybody having any suggestions to make that free using coupons or promotional codes .Now we are using coupons via 'merchant-calculation-callback' method to give discounts. Similarly can we make the 'Shipping & Handling' free of cost or give a discount in 'Shipping & Handling' charges. Thank you
  • Sep 15, 2009
    issue 45 (Coupon Restriction) reported by nirmalassyst   -   Is there any option to remove the 'Add another coupon' link.
    Is there any option to remove the 'Add another coupon' link.
  • Sep 15, 2009
    issue 44 (restrict to only one coupon) reported by nirmalassyst   -   What is the expected output? What do you see instead? Now there is no restriction to the no:of coupons or promotional codes. I want to restrict the no:of coupons per order .
    What is the expected output? What do you see instead? Now there is no restriction to the no:of coupons or promotional codes. I want to restrict the no:of coupons per order .
  • Sep 11, 2009
    issue 43 (Where I can download ?) reported by rizky.tahara   -   Hi, I'm arrived here since I know that template lite already unmaintained. But, when I want to try the template-lite 2.2 that you've modified, I don't have the link. Could you give me some link that I can download so I can try that template-lite that already modified.. Thank you before...
    Hi, I'm arrived here since I know that template lite already unmaintained. But, when I want to try the template-lite 2.2 that you've modified, I don't have the link. Could you give me some link that I can download so I can try that template-lite that already modified.. Thank you before...
  • Aug 21, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by zahidraf   -   Great info here you can increase your page rank here . http://www.zahipedia.com/links/
    Great info here you can increase your page rank here . http://www.zahipedia.com/links/
  • Aug 20, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by zahidraf   -   this is great info http://www.watchlivetv.us
    this is great info http://www.watchlivetv.us
  • Aug 08, 2009
    issue 42 (Carrier-Calculated Shipping) reported by goo...@egrafxx.com   -   I need to know if I can add carrier-calculated shipping to certain items individually in the cart. In my situation, some products -- although ordered in one cart -- need to be calculated separately for shipping due to extra large size. Smaller items can be combined into one box. I've reviewed the coding and it states that all items must be shipped in one box. Are there any workarounds? Only need this to work with FedEX. I am using a MAC. Presently, I have the site online with carrier-calculated shipping (FedEX only)--that ships everything in one box. Site URL: www.kl-receptacles.com
    I need to know if I can add carrier-calculated shipping to certain items individually in the cart. In my situation, some products -- although ordered in one cart -- need to be calculated separately for shipping due to extra large size. Smaller items can be combined into one box. I've reviewed the coding and it states that all items must be shipped in one box. Are there any workarounds? Only need this to work with FedEX. I am using a MAC. Presently, I have the site online with carrier-calculated shipping (FedEX only)--that ships everything in one box. Site URL: www.kl-receptacles.com
  • Aug 05, 2009
    issue 40 (Google Cart require_once) commented on by intel352   -   Try speaking english so the rest of us can understand what the hell you're saying.
    Try speaking english so the rest of us can understand what the hell you're saying.
  • Jul 29, 2009
    issue 37 (CheckoutServer2Server Munges the URL and Break URL Parameter...) commented on by claudioac   -   MUCHAS GRACIAS it save my life :P
    MUCHAS GRACIAS it save my life :P
  • Jul 12, 2009
    Documentation Wiki page commented on by vikasbhardwj   -   hi mayasky76, I want one help from you.. I am using the scrip and php code provided by you on http://www.whoopie.net/ but i am facing on problem in that. Actually i have local buyer id which i stored in session variable. now when we are inserting data through responsehandlerdemo.php into table WPY_GOOGLE i want to insert the buyerid also which is in session. but i am unable to get that value from session. I dont want is the exaclty the problem and where is it?? pls help me i am stuck in this problem thanks in advance vikas
    hi mayasky76, I want one help from you.. I am using the scrip and php code provided by you on http://www.whoopie.net/ but i am facing on problem in that. Actually i have local buyer id which i stored in session variable. now when we are inserting data through responsehandlerdemo.php into table WPY_GOOGLE i want to insert the buyerid also which is in session. but i am unable to get that value from session. I dont want is the exaclty the problem and where is it?? pls help me i am stuck in this problem thanks in advance vikas
  • Jul 05, 2009
    Documentation Wiki page commented on by reneholliday   -   The path for this file must be specified in the merchant's API callback URL in Settings->Integration of the merchant's seller account. How can you override this path requirement in the merchant's API callback setting? I have a number of sellers that use checkout and these sellers also sell on a number of different sites... So, how can these sellers input each sites callback requirement. It seems that sellers are limited to one site and one API callback....
    The path for this file must be specified in the merchant's API callback URL in Settings->Integration of the merchant's seller account. How can you override this path requirement in the merchant's API callback setting? I have a number of sellers that use checkout and these sellers also sell on a number of different sites... So, how can these sellers input each sites callback requirement. It seems that sellers are limited to one site and one API callback....
  • Jul 03, 2009
    issue 41 (Integers don't work in different parts for dollars) reported by mrrehbein   -   What steps will reproduce the problem? // Somewhere in the middle: $Gshipping = new GoogleFlatRateShipping('Basic Shipping', 5); $Gshipping->AddShippingRestrictions($Gfilter); $Gcart->AddShipping($Gshipping); Creates the xml without warning containing shipping of "5" Clicking the button does _NOT_ include shipping line. // Somewhere in the middle: $Gshipping = new GoogleFlatRateShipping('Basic Shipping', '5.00'); $Gshipping->AddShippingRestrictions($Gfilter); $Gcart->AddShipping($Gshipping); Creates the xml without warning containing shipping of "5.00" Clicking the button does include shipping line. What is the expected output? What do you see instead? Expected either GC to allow integer dollars, or the library to add decimal places as needed. What version of the product are you using? On what operating system? 1.2.5c.zip Linux, PHP 5.2
    What steps will reproduce the problem? // Somewhere in the middle: $Gshipping = new GoogleFlatRateShipping('Basic Shipping', 5); $Gshipping->AddShippingRestrictions($Gfilter); $Gcart->AddShipping($Gshipping); Creates the xml without warning containing shipping of "5" Clicking the button does _NOT_ include shipping line. // Somewhere in the middle: $Gshipping = new GoogleFlatRateShipping('Basic Shipping', '5.00'); $Gshipping->AddShippingRestrictions($Gfilter); $Gcart->AddShipping($Gshipping); Creates the xml without warning containing shipping of "5.00" Clicking the button does include shipping line. What is the expected output? What do you see instead? Expected either GC to allow integer dollars, or the library to add decimal places as needed. What version of the product are you using? On what operating system? 1.2.5c.zip Linux, PHP 5.2
  • Jun 29, 2009
    issue 39 (broken SVN repository?) commented on by carazooppc   -   How to unlock a svn file? http://www.carazoo.com/
    How to unlock a svn file? http://www.carazoo.com/
  • Jun 29, 2009
    issue 39 (broken SVN repository?) commented on by carazooppc   -   How to unlock a svn file? <a href="http://www.carazoo.com/">http://www.carazoo.com/</a>
    How to unlock a svn file? <a href="http://www.carazoo.com/">http://www.carazoo.com/</a>
  • Jun 12, 2009
    issue 40 (Google Cart require_once) reported by 9080706   -   One of the most fucking work done by u guys.... its absolutely sucking.... im sitting in my chairs for around 12 hrs just for that fucking require_ocne ... cann't u give some cleaner one... once again its the most fucking code that u have retuned
    One of the most fucking work done by u guys.... its absolutely sucking.... im sitting in my chairs for around 12 hrs just for that fucking require_ocne ... cann't u give some cleaner one... once again its the most fucking code that u have retuned
  • Jun 03, 2009
    issue 39 (broken SVN repository?) commented on by carazooppc   -   How to unlock a svn file? http://www.carazoo.com/
    How to unlock a svn file? http://www.carazoo.com/
  • Jun 03, 2009
    issue 39 (broken SVN repository?) commented on by carazooppc   -   How to unlock a svn file? <a href="http://www.carazoo.com/">Carazoo.com</a>
    How to unlock a svn file? <a href="http://www.carazoo.com/">Carazoo.com</a>
  • May 23, 2009
    issue 39 (broken SVN repository?) commented on by chrisjen...@hotmail.com   -   an svn file has been locked so we cant grab anything past it. if someone could unlock the svn that would be handy.
    an svn file has been locked so we cant grab anything past it. if someone could unlock the svn that would be handy.
  • May 21, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by altamiraweb   -   Gracias por la explicacion www.wobuu.com
    Gracias por la explicacion www.wobuu.com
  • May 18, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by altamiraweb   -   Keep up the awesome Work!!! Thank you Miadeo diseño web http://www.miadeo.com
    Keep up the awesome Work!!! Thank you Miadeo diseño web http://www.miadeo.com
  • May 05, 2009
    issue 39 (broken SVN repository?) commented on by lizadecausta   -   Any help guys.. I have the same problem here at my end as well.. any help would be really appreciated... http://www.mindalbum.com/ http://www.seozap.com/ http://www.imindworks.com/ http://www.emindtree.com/
    Any help guys.. I have the same problem here at my end as well.. any help would be really appreciated... http://www.mindalbum.com/ http://www.seozap.com/ http://www.imindworks.com/ http://www.emindtree.com/
  • May 05, 2009
    issue 37 (CheckoutServer2Server Munges the URL and Break URL Parameter...) commented on by lizadecausta   -   Let's try and see if it's working or not... thanks guys for your help.. http://www.mindalbum.com/ http://www.seozap.com/ http://www.imindworks.com/ http://www.emindtree.com/
    Let's try and see if it's working or not... thanks guys for your help.. http://www.mindalbum.com/ http://www.seozap.com/ http://www.imindworks.com/ http://www.emindtree.com/
  • May 05, 2009
    issue 36 (Why the package doesn't work the way it should and how to fi...) commented on by lizadecausta   -   Any help with the above issue will be appreciated... http://www.mindalbum.com/ http://www.seozap.com/ http://www.imindworks.com/ http://www.emindtree.com/
  • May 05, 2009
  • May 05, 2009
    issue 33 (GoogleRequest->SendReq should attempt to return error-messag...) commented on by lizadecausta   -   Even me too.. any clue guys...?? http://www.mindalbum.com/ http://www.seozap.com/ http://www.imindworks.com/ http://www.emindtree.com/
  • May 05, 2009
    issue 32 (Update filename case to match the class names so autoload ca...) commented on by lizadecausta   -   I think the same as adams... any clue?? http://www.mindalbum.com/ http://www.seozap.com/ http://www.imindworks.com/ http://www.emindtree.com/
  • Apr 09, 2009
    issue 39 (broken SVN repository?) reported by ras...@mindplay.dk   -   Trying to check out the trunk using the latest version of Tortoise SVN, produces the following error: In directory 'C:\Users\mindplay.dk\Web\google-checkout\library\xml-processing' Can't open file 'C:\Users\mindplay.dk\Web\google-checkout\library\xml-processing\.svn\tmp\text-base\gc_XmlBuilder.php.svn-base': The system cannot find the file specified. The packaged version under "downloads" appears to be outdated, so I wanted the latest version with bugfixes from SVN, but the repository appears to be broken?
    Trying to check out the trunk using the latest version of Tortoise SVN, produces the following error: In directory 'C:\Users\mindplay.dk\Web\google-checkout\library\xml-processing' Can't open file 'C:\Users\mindplay.dk\Web\google-checkout\library\xml-processing\.svn\tmp\text-base\gc_XmlBuilder.php.svn-base': The system cannot find the file specified. The packaged version under "downloads" appears to be outdated, so I wanted the latest version with bugfixes from SVN, but the repository appears to be broken?
  • Apr 02, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by cn...@yahoo.cn   -   http://www.cnhuu.cn
    http://www.cnhuu.cn
  • Mar 05, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by pinakis   -   Nice job.. http://blog.carazoo.com/
  • Mar 03, 2009
    issue 38 (PHP Code To ping host/Servers on a Network from a Solaris bo...) commented on by izmocars123   -   Even I am also interested to know about this. http://www.carazoo.com/
    Even I am also interested to know about this. http://www.carazoo.com/
  • Mar 03, 2009
    issue 37 (CheckoutServer2Server Munges the URL and Break URL Parameter...) commented on by izmocars123   -   Will try it. http://www.carazoo.com/
  • Mar 03, 2009
    issue 36 (Why the package doesn't work the way it should and how to fi...) commented on by izmocars123   -   Nice bit of code. :-) http://www.carazoo.com/
    Nice bit of code. :-) http://www.carazoo.com/
  • Mar 03, 2009
    issue 35 (The merchant calc API has wrong entity names for gift certs ...) commented on by izmocars123   -   Can anyone explain it properly? http://www.carazoo.com/
    Can anyone explain it properly? http://www.carazoo.com/
  • Mar 03, 2009
    issue 34 (A better way of handling included files) commented on by izmocars123   -   Cool.. http://www.carazoo.com/
  • Mar 03, 2009
    issue 33 (GoogleRequest->SendReq should attempt to return error-messag...) commented on by izmocars123   -   I am also interested to know how can we set the redirect url to our site http://www.carazoo.com/
    I am also interested to know how can we set the redirect url to our site http://www.carazoo.com/
  • Mar 03, 2009
    issue 32 (Update filename case to match the class names so autoload ca...) commented on by izmocars123   -   Hmmm http://www.carazoo.com/
  • Mar 03, 2009
    issue 30 (Carrier-calculated shipping unneccessarily forces dimensions) commented on by izmocars123   -   Nice bit of information. :-) http://www.carazoo.com/
    Nice bit of information. :-) http://www.carazoo.com/
  • Mar 03, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by izmocars123   -   Its cool...I would definitely try it :-) http://www.carazoo.com/
    Its cool...I would definitely try it :-) http://www.carazoo.com/
  • Mar 03, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by izmocars123   -   Its cool...I would definitely try it :-) <a href="http://www.carazoo.com/">http://www.carazoo.com/</a>
    Its cool...I would definitely try it :-) <a href="http://www.carazoo.com/">http://www.carazoo.com/</a>
  • Feb 20, 2009
    issue 31 (googlecart->CheckoutServer2Server has a hardcoded include pa...) commented on by kaixin110   -   Nice explanation dude.. keep up the good work. http://www.visitchn.com
    Nice explanation dude.. keep up the good work. http://www.visitchn.com