it seems it didn't post my fix here it is again: In the process() function, change: if($this->username !== false && $this->password !== false) curl_setopt($ch, CURLOPT_USERPWD, $this->username.':'.$this- >password);
To: if($this->username !== false && $this->password !== false) curl_setopt($ch, CURLOPT_USERPWD, base64_encode($this->username.':'. $this->password)); That should work fine :)
