Stefan Hueg
Stefan Hueg
:+1: Thanks. I've made a 1:1 comparison between my self-written migrations and the ones generated using your package. They're almost 100% equal. I recommend a tool called Toad (http://www.quest.com/toad-for-mysql/) for...
@tomzx I'd second that.
Same issue here. The server requires a TLS 1.2 connection, project is using .NET 6.0. I tried different NuGet versions without success. All suggested fixes above also didn't work.
> @codengine > > > All suggested fixes above also didn't work. > > You are saying: if you switch to use .NET Framework 4.8, **it also does not work?**...
Hi @FanDjango, I'll ask the owner of the FTP if I can get my hands on their logs and details. I'll let you know! FYI, if that helps, I already...
Here is my client's log, it is identical on 4.8 and 6.0: ``` > # Connect() > Status: FluentFTP 42.0.0.0 > Status: Connecting to ***:21 > Status: Waiting for a...
With EPSV, I get the following output: ``` # OpenPassiveDataStream(EPSV, "MLSD /", 0) Command: EPSV Status: Waiting for response to: EPSV Response: 229 Entering Extended Passive Mode (|||41708|) Status: Connecting...
One (stupid) question (sorry I'm not so deep into FTP over TLS), may it be that the authorization is done via TLS, but the data transfer isn't? As far as...
I also tried the following settings, didn't help either: ``` Protocols = SslProtocols.Ssl3 | SslProtocols.Ssl2 | SslProtocols.Tls13 | SslProtocols.Tls12 | SslProtocols.Tls11 | SslProtocols.Tls, DataConnection = FtpDataConnectionType.AutoPassive, Encryption = FtpEncryptionMode.Explicit ```...
I can checkout the source from a special branch and test it there. Just let me know :)