此错误是因为uc通讯照成的- function init_input($getagent = '') {
- $input = getgpc('input', 'R');
- if($input) {
- $input = $this->authcode($input, 'DECODE', $this->app['authkey']);
- parse_str($input, $this->input);
- $this->input = daddslashes($this->input, 1, TRUE);
- $agent = $getagent ? $getagent : $this->input['agent'];
- if(($getagent && $getagent != $this->input['agent']) || (!$getagent && md5($_SERVER['HTTP_USER_AGENT']) != $agent)) {
- exit('Access denied for agent changed');
- } elseif($this->time - $this->input('time') > 3600) {
- exit('Authorization has expired');
- }
- }
- if(empty($this->input)) {
- exit('Invalid input');
- }
- }
复制代码 蘑菇没遇到过这个问题,所以只能建议楼主检查下ss的authkey是否与uc一致。另外请楼主清除一下cookie再试试 |