Discuz! X2.5 积分充值成功、支付宝支付到账,但返回信息为 Access Denied,解决方案

支付宝充值后返回信息 Access Denied ,可以通过下面方法进行修改。

找到文件 source/class/discuz/discuz_application.php
查找代码:

  1. $_GET['handlekey']= !empty($_GET['handlekey']) && preg_match('/^w+$/', $_GET['handlekey']) ? $_GET['handlekey'] : '';

改为:

  1. if(!(!empty($_GET['handlekey']) && preg_match('/^w+$/', $_GET['handlekey']))) {
  2. unset($_GET['handlekey']);
  3. }