I want to connect my Symfony2 App with a FTPS :
$ftp = ftp_ssl_connect("ftps://remote.platform.pro", 990);
But I have this error :
UndefinedFunctionException: Attempted to call function "ftp_ssl_connect"
It seems that Symfony does not recognize this function, which seems crazy! Is there a service or other specific function to use instead?
__ My work environment __
I found nothing in forums and documentation so any help would be appreciated ...
Have you enabled OpenSSL ?
To do this, you have to open php.ini and remove the semicolon to:
;extension=php_openssl.dll
Otherwise you probably find an answer here :