Skip to content

Instantly share code, notes, and snippets.

@kbcarte
Created August 22, 2022 14:23
Show Gist options
  • Save kbcarte/93d68d7f93472ac7c9a233a52c9977d6 to your computer and use it in GitHub Desktop.
Save kbcarte/93d68d7f93472ac7c9a233a52c9977d6 to your computer and use it in GitHub Desktop.
FileZilla FATAL ERROR type 11 WPEngine fix

The issue is, on Ubuntu, FileZilla is trying multiple ssh keys even when set to use username/pass for sftp connections. This causes WPEngine to drop the connection after the first one or two attempts with bad keys.

To fix this, we can set the SSH_AUTH_SOCK env variable before launching filezilla. This does require opening FileZilla from the cli, but we can make an alias for it.

In my .bashrc file, I add this alias at the end.

  • alias fz="SSH_AUTH_SOCK=null filezilla &"

Now the cli command fz will open FileZilla and work as expected.

Yoink: https://forum.filezilla-project.org/viewtopic.php?t=52987#p178270

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment