vscode-sftp icon indicating copy to clipboard operation
vscode-sftp copied to clipboard

Still can't get FTPS to work in VScode (similar settings working in sublime text)

Open thenorman138 opened this issue 2 years ago • 4 comments

I've been using sublime text for years but really want to swap to VScode full time so I used this extension as my solution for upload on save, however, I can't get FTPS to work no matter how many ways I try. The same basic settings work in sublime text except the plugin I use there allows the 'ftps' protocol whereas this one asks to user either local, ftp or sftp.

My config file:

{
    "name": "test",
    "host": "ftpweb.user.srv",
    "protocol": "ftp",
    "secure": true,
    "secureOptions": {
        "rejectUnauthorized": false
    },
    "port": 990,
    "username": "ftpweb.user.srv|user1",
    "password": "redacted",
    "remotepath": "/",
    "uploadOnSave": true
}

FTP on a different server works but my production server is locked to port 990 on ftps. Is there any workaround to this?

thenorman138 avatar Jan 12 '23 12:01 thenorman138