Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ftps doesn't work starting from php 8 #883

Closed
wc-matteo opened this issue Feb 29, 2024 · 1 comment
Closed

ftps doesn't work starting from php 8 #883

wc-matteo opened this issue Feb 29, 2024 · 1 comment

Comments

@wc-matteo
Copy link

php 7

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

image

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

image

phpinfo shows ftps support disabled and php -r 'var_dump(function_exists("ftp_ssl_connect"));' returns bool(false)

@tianon
Copy link
Member

tianon commented Mar 2, 2024

See docker-library/php#1488

@tianon tianon closed this as completed Mar 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants