1 ftp.inc public FileTransferFTPExtension::connect()

Connects to the server.

Overrides FileTransfer::connect

File

core/includes/filetransfer/ftp.inc, line 53

Class

FileTransferFTPExtension

Code

public function connect() {
  $this->connection = ftp_connect($this->hostname, $this->port);

  if (!$this->connection) {
    throw new FileTransferException("Cannot connect to FTP Server, check settings");
  }
  if (!ftp_login($this->connection, $this->username, $this->password)) {
    throw new FileTransferException("Cannot log in to FTP server. Check username and password");
  }
}