Network file transfer - Printable Version +- Small Basic Forum (https://litdev.uk/mybb) +-- Forum: Small Basic (https://litdev.uk/mybb/forumdisplay.php?fid=1) +--- Forum: Extensions (https://litdev.uk/mybb/forumdisplay.php?fid=3) +--- Thread: Network file transfer (/showthread.php?tid=2) |
Network file transfer - litdev - 09-02-2023 While reinstating website and extension downloader, I found that various webserver requests, like ftp etc failed. The solution was to set the following (C#) before starting web requests. Code: WebRequest.DefaultWebProxy.Credentials = CredentialCache.DefaultCredentials; Code: LDNetwork.SetSSL() |