I got this error saying:
Fatal error: Class ‘SoapClient’ not found in ….php file. Do I have to install/include the SoapClient manually? Isn’t it a builtin php module?
Update:
If I am using wordpress, how can I get soapclient installed?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on how you installed PHP.
If PHP was built from source, you have to rebuild it with the
--enable-soapoption per http://php.net/manual/en/soap.installation.php.If you installed a binary package via a package manager in your distro, check if you can find any
php5-soapclient-packages or similar and install those.Tested on Debian wheezy,
php5-cliincludesSoapClient()by default.