CakeFest 2024: The Official CakePHP Conference

インストール手順

SOAP サポートを有効にするには、--enable-soap を指定して PHP の configure を行います。

add a note

User Contributed Notes 2 notes

up
-36
c at cinqs dot net
7 years ago
If you received a

E: Couldn't find any package by regex 'php7.1-soap'

when using docker php:apache image

try

apt-get install php-soap

instead
up
-53
dbagnara
7 years ago
for Ubuntu 16.04 LTS
sudo apt-get install php7.0-soap
sudo systemctl restart apache2.service
To Top