PHP-SOAP 확장이 로드되지 않았습니다.

PHP-SOAP 확장이 로드되지 않았습니다.

Opencats를 설치하려고 합니다. 이를 위해서는 비누를 활성화해야 합니다. 비누를 활성화했습니다.

soap
Soap Client => enabled
Soap Server => enabled
soap.wsdl_cache => 1 => 1
soap.wsdl_cache_dir => /tmp => /tmp
soap.wsdl_cache_enabled => 1 => 1
soap.wsdl_cache_limit => 5 => 5
soap.wsdl_cache_ttl => 86400 => 86400

하지만 설치하는 동안 여전히 표시됩니다.

PHP SOAP extension (soap) is not loaded.
Check your settings in php.ini.

CATS Open Source will function without SOAP, but CATS Professional functionality will not be supported.

Under certain Linux / BSD distributions, the PHP SOAP extension is a separate package.

Ubuntu: Run "apt-get install php-soap" and restart your webserver.

Debian: Run "apt-get install php5-soap" and restart your webserver.

FreeBSD: Install the php5-soap port, or configure SOAP support in the php-extensions port and restart your webserver.

저는 페도라 17os를 사용하고 있습니다. PHP :PHP 5.4.17

php.ini

[soap]
; Enables or disables WSDL caching feature.
; http://php.net/soap.wsdl-cache-enabled
soap.wsdl_cache_enabled=1

; Sets the directory name where SOAP extension will put cache files.
; http://php.net/soap.wsdl-cache-dir
soap.wsdl_cache_dir="/tmp"

; (time to live) Sets the number of second while cached file will be used
; instead of original one.
; http://php.net/soap.wsdl-cache-ttl
soap.wsdl_cache_ttl=86400

; Sets the size of the cache limit. (Max. number of WSDL files to cache)
soap.wsdl_cache_limit = 5

필요한 모든 것은 내가 했습니다. 하지만 여전히 문제는 해결되지 않습니다.

관련 정보