Closed GoogleCodeExporter closed 9 years ago
Looks like its pointing to the admin side when it should be pointing to the
catalog.
Backup and try this -
ADMIN/ORDERS.PHP
REPLACE
CODE
include_once('includes/modules/payment/googlecheckout.php');
$googlepay = new googlecheckout();
//Setup the log file
if (!$message_log = fopen(API_CALLBACK_MESSAGE_LOG, "a")) {
error_func("Cannot open " . API_CALLBACK_MESSAGE_LOG . " file.\n", 0);
exit(1);
WITH
CODE
include_once(DIR_FS_CATALOG .'includes/modules/payment/googlecheckout.php');
$googlepay = new googlecheckout();
//Setup the log file
if (!$message_log = fopen (DIR_FS_CATALOG .
'googlecheckout/response_message.log', "a")) {
error_func("Cannot open " . API_CALLBACK_MESSAGE_LOG . " file.\n", 0);
exit(1);
Original comment by jacob13moon@gmail.com
on 19 Oct 2006 at 12:28
Original comment by jacob13moon@gmail.com
on 19 Oct 2006 at 12:47
Original issue reported on code.google.com by
jacob13moon@gmail.com
on 19 Oct 2006 at 12:26