Hi,
My VB application with ftp.dll did handle ftp exchanges with a key website (www.civa-results.com) but I have now added an SSL certificate from RapidSSL and the following occurs:
If I include the addHandler Myftp.ServerCertificateValidate etc. then Myftp.ConnectSSL(the URI) invokes the certificate sub you recommend - this reveals zero SslPolicyErrors but six ignoredErrors and the following connect(URI) statement fails and diverts processing to the Catch statement with text "The remote certificate is invalid according to the validation procedure."
If I comment-out the addHandler the connect(URI) and login(username, password) work fine, but then I can't do any work - change the folder, do uploads/downloads - they all error. I am happy to provide the credentials for this website privately if required.
My FileZilla client with unchanged credentials continues to work fine with this website.
The .htaccess file I have put in the root folder of the website is as recommended by the host company -
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} !.well-known/acme-challenge
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
If I delete the .htaccess file from the website root it doesn't seem to make any difference.
Please can you advise me what steps I can take to resolve these issues?
Thanks