Ecshop订单支付成功后显示“此支付方式不存在或者参数错误”
解决办法:
打开 respond.php 文件
查找:
if (file_exists($plugin_file))
修改为:
if (file_exists(ROOT_PATH.$plugin_file))
OK了!
Ecshop订单支付成功后显示“此支付方式不存在或者参数错误”
解决办法:
打开 respond.php 文件
查找:
if (file_exists($plugin_file))
修改为:
if (file_exists(ROOT_PATH.$plugin_file))
OK了!