Hi,drsceifers wrote: I turned on debug and got these messages:
Notice: Use of undefined constant ADDR_POLICY_LAST - assumed 'ADDR_POLICY_LAST' in /hsphere/local/home/c63396/millenniumlightingonline.com/modules/Orders/action.default.php on line 135
...
I've never used the Orders module. So, all I can offer is a few observations that I made while looking at your debug output and the module code. I hope these might help nonetheless:
1) Line 135 of action.default.php is
Code: Select all
$order_maker = new order_maker($this);
Code: Select all
class order_maker
{
const ADDR_POLICY_FEU = 'addr::from_feu';
const ADDR_POLICY_LAST = 'addr::from_last';
const ADDR_POLICY_NONE = 'addr::none';
private $_this_module = NULL;
private $_cart_module = NULL;
private $_feu_module = NULL;
private $_billing_address_policy = ADDR_POLICY_LAST;
...
private $_billing_address_policy = self::ADDR_POLICY_LAST;
Otherwise, PHP will be "oh so helpful" and assume the programmer meant the string 'ADDR_POLICY_LAST' and use that to initialize $_billing_address_policy -- as noted in the "notice" debug message above. My guess is that this probably isn't helping matters.

Hope this helps,
Fred P.