0

How should I check that and how should I install it?

I don't think phpinfo() can help, is that true?

HopelessN00b
  • 53,795
  • 33
  • 135
  • 209
smhnaji
  • 619
  • 2
  • 11
  • 24
  • [Administration panels are off topic](http://serverfault.com/help/on-topic). [Even the presence of an administration panel on a system,](http://meta.serverfault.com/q/6538/118258) because they [take over the systems in strange and non-standard ways, making it difficult or even impossible for actual system administrators to manage the servers normally](http://meta.serverfault.com/a/3924/118258), and tend to indicate low-quality questions from *users* with insufficient knowledge for this site. – HopelessN00b Apr 09 '15 at 02:33

2 Answers2

4

To check if SOAP is available you can use the following shell command:

 php -i | grep soap 
user276008
  • 41
  • 2
0

SOAP is a php extension, so if it's correctly installed it will appear in phpinfo(). It looks like with DirectAdmin they have some custom scripts to rebuild apache/php. You would need to use those, and add --enable-soap to the PHP configure line.

devicenull
  • 5,622
  • 1
  • 26
  • 31