我尝试从远程服务器中包含一个文件。当我使用普通的ftp时一切正常。当我尝试使用ftps ...
<?php
$erg = include("ftps://user:pw@ftp.doamin.de/files/toinclude.php");
?>
我收到了一个错误:
Warning: include(): SSL operation failed with code 1. OpenSSL Error messages: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure in /var/www/html/includetest.php on line 10
Warning: include(ftps://...@ftp.domain.de/files/toinclude.php): failed to open stream: Unable to activate SSL mode in /var/www/html/includetest.php on line 10
当我使用filezilla进行连接时,ftpserver能够在“ftp over tls”模式下工作。
在此版本中激活了webserver openssl:OpenSSL 1.0.1f 2014年1月6日
我已经搜索了网站和这个网站很长一段时间但没有任何成功。
lg grischan