You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM wordpress:6-php7.4
# Install necessary packages for FTP and SSL support
RUN apt-get update && \
apt-get install -y libssl-dev && \
docker-php-ext-install ftp
php 8
FROM wordpress:6-php8.3
# Install necessary packages for FTP and SSL support
RUN apt-get update && \
apt-get install -y libssl-dev && \
docker-php-ext-install ftp
phpinfo shows ftps supportdisabled and php -r 'var_dump(function_exists("ftp_ssl_connect"));' returns bool(false)
The text was updated successfully, but these errors were encountered:
php 7
php 8
phpinfo shows ftps support
disabled
andphp -r 'var_dump(function_exists("ftp_ssl_connect"));'
returnsbool(false)
The text was updated successfully, but these errors were encountered: