在if($verify_result) { 之前复制这三个变量 就可以直接访问notify.php 启用调试模式 或者 逐步echo 相关变量来调试
错误原因 notify.php没有入口文件 是独立的 用到的一些函数需要加载某些文件
require DT_ROOT.’/include/module.func.php’; // 更改用户级别后需要根据情况赠送客户积分,credit_add credit_record 两个函数在这个文件定义。
require DT_ROOT.’/include/post.func.php’; // company.class.php里用到了post.func.php
require DT_ROOT.’/module/company/company.class.php’; //更改用户级别需要这个类,$do1->vip_edit($vip);
注意 把开头 //if(!$_POST && !$_GET) exit(‘fail’); 这句注释掉 要不一直fail; 不要忘记调试好后再启用这句。
源错误 _username, _groupid 都是没有的 因为这个页面是第三方访问 并没有登陆状态,可以在$do1 = new company; 后用
isset($user)?$user=$user:$user= $do1->get_one($r[‘username’]); 获取用户信息。