vscode-deploy-reloaded icon indicating copy to clipboard operation
vscode-deploy-reloaded copied to clipboard

Noob issue

Open binary64 opened this issue 7 years ago • 4 comments

Description

Greetings :) I am unable to successfully deploy to my SFTP.

Actual behavior

When I CTRL+S a file I've edited, I see one empty line printed to the Output > Deploy Reloaded, and "Deploying files to 'blah'" in the status bar. Then nothing happens (waited for a long while)

Expected behavior

Quickly upload :)

Steps to reproduce

{
	"deploy.reloaded": {
		"packages": [
			{
				"name": "main",
				"description": "Package version 2.3.4",
				"deployOnSave": true,
				"fastCheckOnSave": true,
				"files": [
					"**/*.php",
					"/*.json"
				],
				"exclude": [
					"tests/**"
				],
				"targets": [
					"blah"
				]
			}
		],
		"targets": [
			{
				"type": "sftp",
				"name": "blah",
				"host": "blah.com",
				"port": 22,
				"user": "blah",
				"password": "blah",
				"dir": "/var/www/myproject",
				"debug": true
			}
		],
		"fastFileCheck": true,
		"deployOnSave": true
	},
	"search.exclude": {
		"**/node_modules": true,
		"**/bower_components": true
	},
	"composer.executablePath": "C:\\ProgramData\\ComposerSetup\\bin\\composer.bat",
	"git.ignoreLimitWarning": true
}

Logs

How? I only see one empty line printed when I activate the plugin with CTRL+S

Your environment

  • Operating system: Win 8.1, vscode latest, deploy-reloaded latest
  • Visual Studio Code version: Version 1.20.1 Commit f88bbf9137d24d36d968ea6b2911786bfe103002 Date 2018-02-13T15:34:36.336Z Shell 1.7.9 Renderer 58.0.3029.110 Node 7.9.0 Architecture x64
  • Extension version: latest today

Additional comments

I've had this exact problem for about a year (with non-reloaded version). I've never been able to use your plugin.

binary64 avatar Mar 05 '18 10:03 binary64

If I change my password to something that is incorrect, I see my first debug message:

[ERROR] Could not deploy files to 'blah': 'All configured authentication methods failed'

binary64 avatar Mar 05 '18 10:03 binary64

@binary64

I see you have activated debug setting in your target: Do the log files, which are stored in the .vscode-deploy-reloaded/.logs sub folder inside your home directory, tell something?

mkloubert avatar Mar 06 '18 17:03 mkloubert

Hi thanks for your reply. The only thing in the log is:

INFO extension.deploy.reloaded.loadplugins - [07/Mar/2018:18:01:22 +0000] "Loaded 19 plugins:
- app
- azureblob
- batch
- compiler
- dropbox
- each
- ftp
- list
- local
- mail
- map
- prompt
- s3bucket
- script
- sftp
- slack
- switch
- test
- zip
"

binary64 avatar Mar 08 '18 13:03 binary64

Any luck with this? Same problem here. Deploy to SFTP fails with 'All configured authentication methods failed'. My host:port, user/password combination works in webstorm's sftp deployment

alexsandrovp avatar Mar 20 '20 14:03 alexsandrovp