tryhus

Results 11 comments of tryhus

Hi Bastiri, > The user has full access Have you test upload/download from an other FTP client (as Filezilla) to your FTP server and **with the same user**? > and...

Is that all the steps are successful with https://dlptest.com/ftp-test/ for you? > I could create an account for you this evening. ok, you can send me hostname, username and password...

As you did I tested with a Filezilla server and I had the same error. I solved the problem by enabling the FTP passive mode. Now passive mode is enable...

Hi Bastiri, You can not pass **myFile** as argument of **uploadStart** function because there is not implicit conversion from type "**File**" to **const String&** To get the file name you...

> FTP last error : 8,68 This code means the file can not be open when sending to FTP server. Did you close the file after reading it **SD.close()** ?

Hi Bastiri, I think the problem is that the data you are trying to send are is not saved in the local file system. The functions download/upload are used to...

Your code send the buffer content **bufferWR** to the FTP server **not** the content of your SD file **datalog.txt**. To send SD file you have to do the following steps...

I added functions to stream data to/from FTP server. This makes it possible to read the SD file at the same time as sending it to the server. In this...

Hi sandeepmistry, > Thank you for opening this pull request, what is the advantage for this functionality? The current write function only allow to send char data. Furthermore, according to...