Line 39 of admin/popup_zap_cc_info.php was causing problems with memory runout.

changed:
$newnum = substr($order['cc_number'], -4, $order['cc_number']);

to:
$newnum = substr($order['cc_number'], -4);

Update is included with package

More...