到目前为止,基本上我的脚本将值发送到网关,然后重定向到 CS 购物车 .. 在该页面中,我获取返回的值并对其进行操作。
我使用 fn 完成和 fn 更改订单状态来完成订单,但无论我做什么,我都找不到 404 页面。我已经尝试重定向到订单页面,但它会产生问题。
这是我从网关返回时使用的代码。
$StaTus_message = "<br>Thank you for shopping with us. Your credit card has been charged and your transaction is successful. We will be shipping your order to you soon.";
$pp_response['customer_email'] = $_REQUEST['billing_cust_email'];
$pp_response['client_id'] = $_REQUEST['billing_cust_name'];
$pp_response['order_status'] = 'C';
$pp_response['reason_text'] = $StaTus_message;
fn_finish_payment($_REQUEST['Order_Id'], $pp_response);
fn_change_order_status($_REQUEST['Order_Id'], $pp_response['order_status']);
我知道这不是一个受欢迎的主题,但我想我会试一试。
此外,我还在 CS-cart 的论坛和互联网上到处搜索文档,但找不到太多。
提前致谢。