• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

SoapClient Not found

EndikaG

New Pleskian
Hello.
I've installed plesk 11.0.9, and php53 on Centos 5.9

Con a call to new php-client, I've obtain the message: "PHP Fatal error: Class 'SoapClient' not found in xxx .php"

I've install the php-soap pakacge:
yum install php-soap

Mi php package list installed:
Code:
# yum list installed | grep php
php-common.i386                         5.3.23-16.el5.art              installed
php-soap.i386                           5.3.23-16.el5.art              installed
php5-ioncube-loader.i386                4.0.14-12111414                installed
php53.i386                              5.3.10-1.el5                   installed
php53-cli.i386                          5.3.10-1.el5                   installed
php53-gd.i386                           5.3.3-13.el5_8                 installed
php53-imap.i386                         5.3.3-13.el5_8                 installed
php53-mbstring.i386                     5.3.3-13.el5_8                 installed
php53-mysql.i386                        5.3.3-13.el5_8                 installed
php53-pdo.i386                          5.3.3-13.el5_8                 installed
php53-sqlite2.i386                      5.3.2-11070811                 installed
php53-xml.i386                          5.3.3-13.el5_8                 installed
psa-appvault-phpads.noarch              2.0.8-8203520080409011611      installed
psa-appvault-phpbb.noarch               3.0.0-8200820080409011626      installed
psa-appvault-phpbook.noarch             1.50-8203220080409011638       installed
psa-appvault-phpbugtracker.noarch       1.19-8203820080416050605       installed
psa-appvault-phpdig.noarch              1.85-8203120080409011645       installed
psa-appvault-phpmoney.noarch            1.3-8204320080409011649        installed
psa-appvault-phpmyfamily.noarch         1.4.1-8203420080409011655      installed
psa-appvault-phpmyvisites.noarch        2.3-8202820080409011701        installed
psa-appvault-phprojekt.noarch           5.2-8200820080409011713        installed
psa-appvault-phpsurveyor.noarch         0.98-8204320080409011723       installed
psa-appvault-phpwebsite.noarch          0.10.2-8203420080409011738     installed
psa-appvault-phpwiki.noarch             1.3.11-8204320080409011808     installed
psa-php53-configurator.i386             1.6.2-cos5.build110121128.16   installed
psa11-php-fakepackage.i386              11.0.9-cos5.build110121128.16  installed

Can you help me?
Thanks
 
Check the extension is included in your php configuration
# /usr/bin/php -m | grep soap
soap

It should be present in
# ls -la /etc/php.d/ | grep soap
-rw-r--r-- 1 root root 49 May 12 02:25 soap.ini
 
Back
Top