Help! PHP attempting FTPS transfer creates empty files

xpl0siv

New Member
Hey, all. I'm currently attempting to use PHP to transfer small files between our server and a remote FTPS (FTP over SSL) server. I'm the standard fair to get this done, ie, file_put_contents, file_get_contents, etc... with the following stream context:\[code\]stream_context_create(array('ftp' => array('overwrite' => true), 'ssl' => array('allow_self_signed' => true)))\[/code\]I'm passing this context stream using the following code. It can connect to the FTPS server just fine, but when it comes to creating the remote file, the file itself completely empty. Empty as in 0 for the file size.\[code\] if(false === file_exists($localFile)) { throw new Exception("Local file, {$localFile}, does not exist."); } if(false === $localFileContents = file_get_contents($localFile)) { throw new Exception("Could not open Local file, {$localFile}."); } if(false === file_put_contents("{$this->url}{$remoteFile}", $localFileContents, FILE_APPEND, $this->context)) { throw new Exception("Could not write to remote file, {$remoteFile}."); }\[/code\]The remote file location, ie $this->url, is in the following format: "ftps://{user}:{pass}@{host}:{port}"We're currently using Windows/Apache setup, so I can't use ftp_ssl_connect() without compiling our own PHP binaries. We couldn't go this route anyhow as it's a major change in our environment.Any help would be much appreciated! If I'm not clear on certain bits, just point out where you need some clarification. Thanks!
 
Back
Top