Closed GoogleCodeExporter closed 9 years ago
Just a side note, f I change the code in the responcehandler to the following:
//Parse the HTTP header to verify the source.
$compare_mer_id = xxxxxxxxxxxxxxxxxx; <- My merchant ID
$compare_mer_key = xxxxxxxxxxxxxxxxx; <- My merchant key
$googlepayment = new googlecheckout();
$merchant_id = $googlepayment->merchantid;
$merchant_key = $googlepayment->merchantkey;
if($compare_mer_id != $merchant_id || $compare_mer_key != $merchant_key) {
error_func("HTTP Basic Authentication failed by comparison!!.\n
merchant_id=$merchant_id\n compare_mer_id=$compare_mer_id\n
merchant_key=$merchant_key\n compare_merchant_key=$compare_mer_key\n");
exit(1);
}
This gets passed the HTTP Basic Authentication failed. Not sure but I think
this may
be a security issue, this is why I have posted the question above.
Original comment by rex.new...@gmail.com
on 16 Feb 2007 at 4:54
rex.newton
Yes in fact that is a problem with PHP installations over CGI. Basic
Authentication
is not supported.
For this im working on a .htaccess way of authenticate.
Im going to publish the solution in the forum.
you can try with the file im attaching
ropu
Original comment by rovagn...@gmail.com
on 19 Feb 2007 at 5:43
Attachments:
update to version v1.2rc2
this issue is solved
ropu
Original comment by rovagn...@gmail.com
on 2 Mar 2007 at 1:37
Original issue reported on code.google.com by
rex.new...@gmail.com
on 16 Feb 2007 at 4:06