Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Beanstream Not Working


dailce

Recommended Posts

Posted

I've done a fresh install of v2.2 RC2

and then installed the Beanstrem module: http://addons.oscommerce.com/info/5380

 

Basically I don't think it's working.

What I notice are the following:

 

Checkout works

Order passed to beanstream

Emails sent

 

Database shows orders BUT they don't show in admin

For beanstream orders order_status in the database is 4

For cash on delivery orders order_status is 2

 

Maybe this has something to do with it?

if beanstream passes back say http://www.MYSITE.com/catalog/checkout_process.php?osCsid=fb71eb82bd85452d14b0da51c3d82d39

Firebug shows response: "Failed to load source for: http://www.MYSITE.com/catalog/checkout_process.php?osCsid=fb71eb82bd85452d14b0da51c3d82d39"

 

Any ideas???

Posted

Ok...

 

I've done a fresh install of v2.2 RC2

and then installed the Beanstrem module: http://addons.oscommerce.com/info/5380

 

Basically I don't think it's working.

What I notice are the following:

 

Checkout works

Order passed to beanstream

Emails sent

 

Database shows orders BUT they don't show in admin

 

I think it has to do with the "bean_webobject.php" of the beanstream module, maybe because it's using

 

reset($HTTP_POST_VARS);
while (list($key, $val) = each($HTTP_POST_VARS)){
if ($key == "osCsid")
	$osCsession = $val;
elseif ($key == "ref2")
	$osCsid = $val;
elseif ($key == "code")
	$payment_error = $val;
else
	$tolString .= "$key=$val&" ;
}

reset($HTTP_GET_VARS);
while (list($key, $val) = each($HTTP_GET_VARS)){
if ($key == "osCsid")
	$osCsession = $val;
elseif ($key == "ref2")
	$osCsid = $val;
elseif ($key == "code")
	$payment_error = $val;
else
	$tolString .= "$key=$val&" ;
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...