CentOS を使用した VPS があります。次のコマンドを使用して SOAp をインストールしました。
$ yum install php-soap
次に、php.ini
ファイルに移動して、SOAP 拡張機能のコメントを外しました。そこにはなかったので、次の行を追加しました。
extension=soap.so
次に、実行してサーバーを再起動しました
$ service httpd restart
ただし、SOAP はまだ有効になっていません。
私はFatal error: Class 'SoapClient'
メッセージを受け取ります。
再度インストールしようとすると、次のメッセージが表示されます。
Package php-soap-5.3.3-27.el6_5.x86_64 already installed and latest version
次のコマンドでもPHPを再構成しようとしました:
$ php-config '--disable-fileinfo' '--disable-pdo' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-libxml' '--enable-sockets' '--prefix=/usr/local' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-curl=/opt/curlssl/' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libxml-dir=/opt/xml2/' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pcre-regex=/opt/pcre' '--with-pic' '--with-zlib' '--with-zlib-dir=/usr' '--enable-soap'
何か助けはありますか?