PHP 8.3.4 Released!

Instalación

Para habilitar el soporte de SOAP, se ha de configurar PHP con --enable-soap.

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