public function __call($method, $args) {
$cache_id = md5($method . serialize($args));
$cache = $this->_cache;
$res = $cache->load($cache_id);
if ($res && $this->_is_cached) {
return $res;
}
$client = $this->_client;
try {
$res = unserialize(call_user_func_array(array(&$client, $method), $args));
} catch (Exception $e) {
throw new Zend_Exception('Error in Soap-request: ' . $e->getMessage(),500);
}
$cache->save($res,$cache_id);
return $res;
}
В настройках php SOAP включён, собственно он включён с момента установки OpenServer. Может нужно что-то обновить? Почему ещё может вылетать подобная ошибка?Заранее спасибо!
