Mohamed Amine Mzoughi
Mohamed Amine Mzoughi
@cla-bot check
@stephane When you merge my other PR, let me know so I can update my master branch so you can merge this if everything is good for you. On the...
@stephane is it OK now ?
Hi Matteo, It's possible to use the passive mode. I will give you an answer tonight. Regards.
@matteocostantini By default, the FTP client is in passive mode (m_bActive is initialized to false), so there's nothing to do. To use the active mode use SetActive(true), in active mode,...
I never tested the FTP Client with this protocol CFTPClient::FTP_PROTOCOL::FTPES. If you are trying to access a normal FTP server (port 21), remove that parameter (it will default to FTP_PROTOCOL::FTP)...
I'm not sure but to access secure servers, I think you need to set an SSL cert file with the static method SetSSLCertFile. You can use this file : https://curl.haxx.se/ca/cacert.pem...
@matteocostantini You can also compile with this preprocessor macro DEBUG_CURL, and use this method : `static void SetCurlTraceLogDirectory(const std::string &strPath);` to specify a directory where debug logs will be stored....
First of all, to what kind of FTP servers are you connecting (SFTP, FTPES or FTPS). I know that the client work with SFTP but not the 2 others (FTPES,...
@matteocostantini OK, I googled curl FTPS/FTPES and I found the following stuff : https://stackoverflow.com/questions/32491790/php-curl-ftpes-w-explicit-tls-ssl => in the code, instead of prefixing the URL with ftps:// prefix it with ftp:// that...