Enable Soap

CustomApache or CustomBuild? You need to configure PHP with --enable-soap.
 
Custombuild ;) or that I must put with --enable-soap
 
Last edited:
Use this command to see which PHP configuration file is used:
Code:
./build used_configs

Then edit it and add --enable-soap to it. If you want to always have it here (with every update) copy the file to the custom folder (see "CustomBuild FAQ").
 
Results:

Apache configuration file: /usr/local/directadmin/custombuild/custom/ap2/configure.apache

PHP4 configuration file: /usr/local/directadmin/custombuild/custom/ap2/configure.php4

suPHP configuration file: /usr/local/directadmin/custombuild/custom/suphp/configure.suphp

PHP5 configuration file: /usr/local/directadmin/custombuild/custom/suphp/configure.php5

Which of its file I must edit?
Once you add it will activate I no longer had anything to do?
 
Locate your php config file:

cd /usr/local/directadmin/custombuild
./build used_configs

Edit your php5 config file: (example)
nano /usr/local/directadmin/custombuild/custom/suphp/configure.php5

Add: (Note that only the last rule has no slash!)
--enable-soap

Save the file and rebuild PHP:
./build php all
 
Last edited:
soap enable

HI,

I have added soap enable as per instruction buts its not installed or enable

PHP Warning: PHP Startup: Unable to load dynamic library './php_soap.dll' - ./php_soap.dll: cannot open shared object file: No such file or directory in Unknown on line 0




"--enable-soap" \
"--enable-mbstring"
 
Back
Top