Я пытаюсь включить протокол SOAP на своем сервере. Soap установлен, но не отображается в php_info.
Версия PHP 5.4.39
Информация о системе: Linux ip-xxx-xxx-xxx-xxx.secureserver.net 2.6.32-042stab106.4 # 1 SMP Пт 27 марта 15:19:28 MSK 2015 x86_64
Настроить команду:
'./configure' '--disable-fileinfo' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-pdo=shared' '--enable-sockets' '--prefix=/usr/local' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' '--with-gd' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libxml-dir=/opt/xml2/' '--with-mcrypt=/opt/libmcrypt/' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pcre-regex=/opt/pcre' '--with-pdo-mysql=shared' '--with-pdo-sqlite=shared' '--with-pic' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--with-zlib' '--with-zlib-dir=/usr'
Загруженный файл конфигурации: /usr/local/lib/php.ini
Что содержит: [мыло]
;extension=soap.so
; Enable soap extension module
extension="/usr/lib64/php/modules/soap.so"
Я не уверен, какая еще информация была бы полезна, но мы будем благодарны за любую помощь.
Из вашей команды конфигурации вы не скомпилировали конфигурацию SOAP. Пожалуйста, попробуйте скомпилировать свой PHP, добавив опцию ниже:
--enable-soap=shared
Таким образом, полная команда для вашей компиляции должна измениться на:
'./configure' '--disable-fileinfo' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-pdo=shared' '--enable-sockets' '--prefix=/usr/local' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' '--with-gd' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libxml-dir=/opt/xml2/' '--with-mcrypt=/opt/libmcrypt/' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pcre-regex=/opt/pcre' '--with-pdo-mysql=shared' '--with-pdo-sqlite=shared' '--with-pic' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--with-zlib' '--with-zlib-dir=/usr'--enable-soap=shared
Затем скопируйте скомпилированный модуль SOAP:
cp modules/soap.so /usr/lib64/php/modules
Перезагрузите веб-сервер Apache с помощью:
/etc/init.d/httpd restart
Затем проверьте, включено ли расширение SOAP на странице phpinfo ().
php-soap
находится в EPEL, поэтому я бы не стал его компилировать.
Установите так:
yum install epel-release
yum makecache
yum install php-soap
Попробуйте выполнить установку с помощью следующей команды.
yum install php54-php-soap