Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

connection fails, but spinning icon goes forever #189

Open
Goddard opened this issue Apr 16, 2023 · 6 comments
Open

connection fails, but spinning icon goes forever #189

Goddard opened this issue Apr 16, 2023 · 6 comments

Comments

@Goddard
Copy link

Goddard commented Apr 16, 2023

So I had a local ip change to a ssh server I usually mount. It isn't a huge deal I can usually just go in and change it. I am unable to do that now though as the spinning icon just continues forever. Hitting edit mode or delete mode does nothing. Closing the manager and re-opening doesn't help.

On Windows 11 and using 1.31

@sknull
Copy link

sknull commented Apr 16, 2023

same here on Windows 10

@ghost
Copy link

ghost commented May 14, 2023

Can confirm this on Win 11 also.
For me it only happens if I have connect on startup enabled. And I have 3 different mount points and two of them usually just keep "endlessly" loading even though I can access them fine.
kuva

@shave999
Copy link

I am having this issue as well. However, as a work around until it gets fixed, you can delete the %appdata%\SSHFS-Win Manager folder. It clears everything.

@kkm
Copy link

kkm commented Nov 13, 2023

I am having this issue as well. However, as a work around until it gets fixed, you can delete the %appdata%\SSHFS-Win Manager folder. It clears everything.

image
Not so good at programming, it has two errors, %appdata%/ it has two folders in uppercase and lowercase letters so the config is not loaded correctly.

It still loads even though I deleted the whole config.

@johnrclark3
Copy link

I am having this issue as well. However, as a work around until it gets fixed, you can delete the %appdata%\SSHFS-Win Manager folder. It clears everything.

Did not resolve the issue for me.

@JCBuck
Copy link

JCBuck commented Jan 15, 2024

A workaround for me was to, exit sshfs-win manager, then modify
%appdata%\Roaming\sshfs-win-manager\vuex.json
for each connection that may have the problem it likely has status key set to connecting, which i changed to disconnected
then start sshfs-win manager again

There are possibilities where it may not connect due to conflicting mount points, say a removable usb drive that has been connected that took over the letter, or a network drive that used the same drive letter.

	"state": {
		"Data": {
			"connections": [
				{
					"advanced": {
						"connectOnStartup": false,
						"customCmdlOptions": [],
						"customCmdlOptionsEnabled": false,
						"reconnect": true
					},
                                       ...
					"status": "connecting",  
				},
...

changed to

	"state": {
		"Data": {
			"connections": [
				{
					"advanced": {
						"connectOnStartup": false,
						"customCmdlOptions": [],
						"customCmdlOptionsEnabled": false,
						"reconnect": true
					},
                                       ...
					"status": "disconnected",  
				},
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants