PHP 8.4.0 RC4 available for testing

Installation

Um die FTP-Funktionen zu verwenden, muss bei der Installation von PHP die Option --enable-ftp verwendet werden.

In Autotools wird die SSL-Unterstützung für FTP implizit aktiviert, wenn es durch Verwendung der Konfigurationsoption --with-openssl zusammen mit der Erweiterung openssl kompiliert wird. Wenn ohne die Erweiterung openssl kompiliert wird, kann die Autotools-Konfigurationsoption --with-ftp-ssl verwendet werden, um die SSL-Unterstützung für FTP explizit zu aktivieren.

Unter Windows wird diese Erweiterung immer als Shared Extension kompiliert und muss daher in der php.ini aktiviert werden.

Changelog

Version Beschreibung
8.4.0 Die Autotools-Konfigurationsoption --with-openssl-dir wurde zugunsten der neuen Option --with-ftp-ssl entfernt, die die SSL-Unterstützung für FTP explizit aktiviert, wenn ohne die Erweiterung openssl kompiliert wird.

add a note

User Contributed Notes 2 notes

up
26
i_djon at hotmail dot com
7 years ago
For some reason folks downvoted the previous entry for this, BUT... indeed, as of PHP 7, to enable this on Windows you have to add the line:

extension=php_ftp.dll

to your php.ini to resolve PHP errors that tell you PHP FTP functions are not defined; the line isn't in there (where, many things are and are just commented out).
up
-4
julian_de_vries at gmx dot de
8 years ago
If you are using PHP 7 under Windows you have to enable ftp in php.ini with extension=php_ftp.dll.
To Top