Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 714 Bytes

adapter_ftp.md

File metadata and controls

26 lines (23 loc) · 714 Bytes

Use the FTP adapter

This adapter works with the standard PHP FTP implementation which is documented in the manual. You have to provide at least a value for the host key.

# app/config/config.yml
oneup_flysystem:
    adapters:
        my_adapter:
            ftp:
                host: ftp.domain.com
                port: ~
                username: ~
                password: ~
                root: ~
                ssl: ~
                timeout: ~
                permPrivate: ~
                permPublic: ~
                passive: ~

More to know