Quote Originally Posted by anjordan77 View Post
Ok, i got the admin working with the latest revision. i have sizes, colors, etc. working also.

Basically Comment out these lines like below in the responsehandler.php:

/*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("Line 119: headers['Authorization'] is NULL.\n");


exit(1);
}*/

$googlepayment = new googlecheckout();
$merchant_id = $googlepayment->merchantid;
$merchant_key =

$googlepayment->merchantkey;

/*if($compare_mer_id != $merchant_id || $compare_mer_key != $merchant_key) {


error_func("Line 127: merchant_id or merchant_key does not match.\n");
exit(1);
}*/
anjordan77, hi

Thanks for your comment. This will work because u take out the security measures to authenticate the messages sent. With out that code any one could send spoofed messages to ur responsehandler. Please, have a look to this post where i explain how to set .htaccess for those with PHP over CGI, where Basic Authentication is Not supported.

http://www.zen-cart.com/forum/showpo...&postcount=665

Try it and let us know how it worked.

ropu