Victor:
How did you get the module to work? My module works, but doesn’t do everything it is supposed to.
Nick
--~--~---------~--~----~------------~-------~--~----~
Google Checkout Module for osCommerce SupportDocumentation and latest releases:
http://code.google.com/p/google-checkout-oscommerce/Group archives:
http://groups.google.com/group/google-checkout-for-osc-mod-supportTo post to this forum, email google-checkout-f...@googlegroups.com.
-~----------~----~----~----~------~----~------~--~---
Victor:
It is not leaving a copy of the order on the site; it proceeds to google checkout. The customer’s shopping cart is not emptied upon leaving the site.
Nick Sekela
Victor:
Here is the htacess file code. What do I need to change?
<?php
/*
Copyright (C) 2007 Google Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/**
* Google Checkout v1.5.0
* $Id: htaccess.php 153 2009-01-30 00:16:37Z ed.davisson $
*
* .htaccess .htpasswd pair for Google Checkout Basic Authentication on CGI php
*
* ChangeLog:
* v0.2
* 02-22-2007
* Add sandbox and checkout account
* Add check for directory
* Add cwd or get['url'] to set defaul dir
* Add file creation
*
* v0.1
* 02-14-2006 st. Valentine's day :D
* Basic creation of text to paste in files
*
* README:
*
* NOTE: This must be used if you run PHP over CGI
*
* Run this script, fill the form with your Google Checkout Merchant Id/Key
* and with the absolute path to your catalog/googlechekout/ directoy.
* ie. /home/ropu/public_html/catalog/googlecheckout
*
* Click "Create" button
*
* If you select not to create files, copy the contents for .htaccess
* and .htpasswd into those files and place them in that directory.
*
* googlecheckout/responsehandler.php folowing code will be disabled if
* CGI config is set to True
*
*
[CODE]
//Parse the HTTP header to verify the source.
if(isset($HTTP_SERVER_VARS['PHP_AUTH_USER']) && isset($HTTP_SERVER_VARS['PHP_AUTH_PW'])) {
$compare_mer_id = $HTTP_SERVER_VARS['PHP_AUTH_USER'];
$compare_mer_key = $HTTP_SERVER_VARS['PHP_AUTH_PW'];
}
else {
error_func("HTTP Basic Authentication failed.\n");
exit(1);
}
if($compare_mer_id != $merchant_id || $compare_mer_key != $merchant_key) {
error_func("HTTP Basic Authentication failed.\n");
exit(1);
}
[/CODE]
*
* Test the responsehandler.php with the responsehandler_test.php
*
*/
?>
<html>
<head>
<script language="JavaScript" type="text/javascript">
function checkCreate(){
var check = document.getElementById('check');
var create = document.getElementById('create');
if(check.checked) {
create.disabled = false;
}
else {
create.disabled = true;
}
}
</script>
<title>.htaccess .htpasswd pair for Google Checkout Basic authentication on CGI php installations</title>
</head>
<body>
<?
if(isset($_POST['submit'])) {
$errors = array();
if(isset($_POST['sb']) && empty($_POST['sb_id'])){
$errors[] = "Your SandBox Merchant ID must not by empty";
}
if(isset($_POST['sb']) && empty($_POST['sb_key'])){
$errors[] = "Your SandBox Merchant KEY must not by empty";
}
if(isset($_POST['gc']) && empty($_POST['gc_id'])){
$errors[] = "Your Checkout Merchant ID must not by empty";
}
if(isset($_POST['gc']) && empty($_POST['gc_key'])){
$errors[] = "Your Checkout Merchant KEY must not by empty";
}
if(!isset($_POST['sb']) && !isset($_POST['gc'])) {
$errors[] = "Select at least SandBox or Checkout Account";
}
if(empty($_POST['path']) || (isset($_POST['check']) && !is_dir($_POST['path']))){
$errors[] = "The path is not valid";
}
if(isset($_POST['create']) && !is_writable($_POST['path'])) {
$errors[] = $_POST['path'] . " is NOT writable";
}
if(empty($errors)) {
$htaccess = 'AuthName "Google checkout Basic Authentication"' . "\n";
$htaccess .= 'AuthType Basic' . "\n";
$htaccess .= 'AuthUserFile ' . $_POST['path'] . "/.htpasswd\n";
$htaccess .= 'require valid-user';
echo "<xmp>.htaccess file:\n<<<Start---\n";
echo $htaccess;
echo "\n---End>>>\n";
$htpasswd = "";
if(isset($_POST['sb'])) {
$sb_user = @$_POST['sb_id'];
$sb_pass = @$_POST['sb_key'];
$sb_crypt_pass = rand_salt_crypt($sb_pass);
$htpasswd .= $sb_user . ":" . $sb_crypt_pass ."\n";
}
if(isset($_POST['gc'])) {
$gc_user = @$_POST['gc_id'];
$gc_pass = @$_POST['gc_key'];
$gc_crypt_pass = rand_salt_crypt($gc_pass);
$htpasswd .= $gc_user . ":" . $gc_crypt_pass ."\n";
}
echo "\n\n.htpasswd file:\n<<<Start---\n";
echo $htpasswd;
echo "---End>>>\n</xmp>\n";
if(isset($_POST['create'])){
$htaccess_file = fopen($_POST['path']. "/.htaccess", w);
$htpasswd_file = fopen($_POST['path']. "/.htpasswd", w);
fwrite($htaccess_file, $htaccess);
fwrite($htpasswd_file, $htpasswd);
fclose($htaccess_file);
fclose($htpasswd_file);
echo "Files Created!<br />";
}
}
else {
echo "<table align=center border=0 cellpadding=0 cellspacing=0>\n";
echo "<tr><th style='color:red'>Errors:</th><tr>\n";
foreach($errors as $error){
echo "<tr>\n";
echo "<td style='color:red'><li>" . $error . "</li></td>\n";
echo "</tr>\n";
}
echo "</table>";
// print_r($errors);
}
}
if(!isset($_POST['path']) || empty($_POST['path'])){
chdir("../googlecheckout");
$_POST['path'] = isset($_GET['url'])?$_GET['url']:getcwd();
}
// For function rand_salt_crypt()
// .htpasswd file functions
// Copyright (C) 2004,2005 Jarno Elonen <elo...@iki.fi>
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * The name of the author may not be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
// BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Generates a htpasswd compatible crypted password string.
function rand_salt_crypt( $pass )
{
$salt = "";
mt_srand((double)microtime()*1000000);
for ($i=0; $i<CRYPT_SALT_LENGTH; $i++)
$salt .= substr("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789./", mt_rand() & 63, 1);
return crypt($pass, $salt);
}
?>
<h2 align=center>.htaccess .htpasswd pair for Google Checkout Basic authentication on CGI php installations</h2>
<form action="" method="post">
<table border=1 cellpadding=2 cellspacing=0 align=center>
<tr>
<th align="center" colspan="2">Sandbox Account: <input type="checkbox" value="true" name="sb"<?php echo (!isset($_POST['submit']) || isset($_POST['sb']))?' checked':'';?>/></th>
</tr>
<tr>
<th align="right">Merchant ID: </th>
<td><input type="text" value="<?=@$_POST['sb_id'];?>" name="sb_id" size="40"/></td>
</tr>
<tr>
<th align="right">Merchant Key: </th>
<td><input type="text" value="<?=@$_POST['sb_key'];?>" name="sb_key" size="40"/></td>
</tr>
<tr>
<th align="center" colspan="2">Checkout Account: <input type="checkbox" value="true" name="gc"<?php echo (!isset($_POST['submit']) || isset($_POST['gc']))?' checked':'';?>/></th>
</tr>
<tr>
<th align="right">Merchant ID: </th>
<td><input type="text" value="<?=@$_POST['gc_id'];?>" name="gc_id" size="40"/></td>
</tr>
<tr>
<th align="right">Merchant Key: </th>
<td><input type="text" value="<?=@$_POST['gc_key'];?>" name="gc_key" size="40"/></td>
</tr>
<tr>
<th align="center" colspan="2"> </th>
</tr>
<tr>
<th align="right">Absolute <i>dir</i> to googlecheckout/ :</th>
<td><input type="text" value="<?=@$_POST['path'];?>" name="path" size="40"/>
<br /><small>( ie. <b>/home/ropu/public_html/catalog/googlecheckout</b> )</small>
</td>
</tr>
<tr>
<th align="right">Check if <i>dir</i> exists: </th>
<td><input type="checkbox" value="true" id="check" onChange="checkCreate()" name="check"<?php echo isset($_POST['check'])?' checked':'';?>/></td>
</tr>
<tr>
<th valign=top align="right">Create Files: </th>
<td><input type="checkbox" value="true" id="create" name="create"<?php echo (isset($_POST['create'])&&isset($_POST['check']))?' checked':'';?><?php echo (!isset($_POST['check']))?' disabled':'';?>/>
<br /><small>(Tip: To create files <i>dir</i> must have <b>Write</b> (777) permission)</small>
<br /><small>Old files will be overrided!</small>
</td>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit" name="submit" value="Create"/><div align=right><small>Coded by:<b>Ropu</b></small></div></td>
</tr>
</table>
</form>
</body>
</html>
I am not sure if I need it and cannot get a reply from the service provider.
Sincerely,
Victor Lee
Victor:
It is not leaving a copy of the order on the site; it proceeds to google checkout. The customer鈥檚 shopping cart is not emptied upon leaving the site.
Nick Sekela
From: google-checkout-f...@googlegroups.com [mailto:google-checkout-f...@googlegroups.com] On Behalf Of Victor Lee
Sent: Monday, June 15, 2009 9:35 AM
To: google-checkout-f...@googlegroups.com
Subject: [GCO4OSC] Re: Has anyone ever been able to make the Google Checkout Module for osCommerce work 100% ?
I just installed it as per instructions and it worked. Of course, I had to do some minor code tweaking as I am not using USD as my default currency. What errors are you getting ?
Sincerely,
Victor Lee
On Jun 15, 2009, at 9:00 PM, Nicholas Sekela wrote:
Victor:
How did you get the module to work? My module works, but doesn鈥檛 do everything it is supposed to.
Victor:
Can you point me to the paid solutions?
Sincerely,
Nick Sekela
From: google-checkout-f...@googlegroups.com [mailto:google-checkout-f...@googlegroups.com] On Behalf Of Vic Velcro
Sent: Wednesday, June 17, 2009 1:40 AM
To: google-checkout-f...@googlegroups.com
Vic Velcro, please stop annoying us with your temper, you're not being
helpful at all and no one cares about your plight with that attitude.
Please stop hijacking this thread as I will not read or comment to
you.
I'm not a developer of this module and this module is not developed by
google. It's a great module developed by some hardworking people who
have decided to share it with everyone.
Sincerely,
Victor Lee
Victor:
It is not leaving a copy of the order on the site; it proceeds to google checkout. The customer鈥檚 shopping cart is not emptied upon leaving the site.
Nick Sekela
From: google-checkout-f...@googlegroups.com [mailto:google-checkout-f...@googlegroups.com] On Behalf Of Victor Lee
Sent: Monday, June 15, 2009 9:35 AM
To: google-checkout-f...@googlegroups.com
Subject: [GCO4OSC] Re: Has anyone ever been able to make the Google Checkout Module for osCommerce work 100% ?
I just installed it as per instructions and it worked. Of course, I had to do some minor code tweaking as I am not using USD as my default currency. What errors are you getting ?
Sincerely,
Victor Lee
On Jun 15, 2009, at 9:00 PM, Nicholas Sekela wrote:
Victor:
How did you get the module to work? My module works, but doesn鈥檛 do everything it is supposed to.
Victor:
Are you still available for this? I could never get this API call back to work.
Sincerely,
Victor Lee
Victor:
It is not leaving a copy of the order on the site; it proceeds to google checkout. The customer鈥檚 shopping cart is not emptied upon leaving the site.
Nick Sekela
From: google-checkout-f...@googlegroups.com [mailto:google-checkout-f...@googlegroups.com] On Behalf Of Victor Lee
Sent: Monday, June 15, 2009 9:35 AM
To: google-checkout-f...@googlegroups.com
Subject: [GCO4OSC] Re: Has anyone ever been able to make the Google Checkout Module for osCommerce work 100% ?
I just installed it as per instructions and it worked. Of course, I had to do some minor code tweaking as I am not using USD as my default currency. What errors are you getting ?
Sincerely,
Victor Lee
On Jun 15, 2009, at 9:00 PM, Nicholas Sekela wrote:
Victor:
How did you get the module to work? My module works, but doesn鈥檛 do everything it is supposed to.
--~--~---------~--~----~------------~-------~--~----~
Google Checkout Module for osCommerce Support