Hello Group
I realize the Gurus do not want to psot to much information this is how the so called experts make their money and I do not blame them one bit. More power to them.
I paid my 25 points for this and here is the fix. BTW, it works perfectly. I am posting this because I have received some answer here and I figure I may as well give something back.
Quote:
To solve the problem, you should edit the 'payment/payment_cc.php' script and find the following lines:
# Put order in table
if(empty($secure_oid) || ($secure_oid_cost != $cart["total_cost"])) {
$orderids = func_place_order(stripslashes($payment_method)." (".$module_params["module_name"].(get_cc_in_testmode($module_params)?", in test mode":"").")", "I", $order_details );
$secure_oid = $orderids;
$secure_oid_cost = $cart["total_cost"];
$duplicate = false;
}
Then you should replace
$orderids = func_place_order(stripslashes($payment_method)." (".$module_params["module_name"].(get_cc_in_testmode($module_params)?", in test mode":"").")", "I", $order_details );
with
$orderids = func_place_order(stripslashes($payment_method), "I", $order_details );
|
I hope I am able to help someone. BTW, make a backup of your original file first and save it to your hard drive in case you have a wrong comma.
It is also a good idea to comment the time of change and who did it. I find it so much easier to go to a page and look at the comments so I know what has been changed.