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

SFTP has been stuck loading pages all the time #10122

Open
AlbertWang257 opened this issue Dec 27, 2024 · 2 comments
Open

SFTP has been stuck loading pages all the time #10122

AlbertWang257 opened this issue Dec 27, 2024 · 2 comments
Labels

Comments

@AlbertWang257
Copy link

The latest version of SFTP has been stuck on the loading page, and it was found that it can be accessed by rolling back to the previous version.

@AlbertWang257
Copy link
Author

image
Add it up

@boilcy
Copy link

boilcy commented Jan 14, 2025

Here is a post explain the reason thoroughly:
https://unix.stackexchange.com/questions/61580/sftp-gives-an-error-received-message-too-long-and-what-is-the-reason

Just modify your .bashrc, .zshrc or config.fish to be quiet for non-interactive session.
for bash:

# If not running interactively, don't do anything and return early
[[ $- == *i* ]] || return

for zsh:

# If not running interactively, don't do anything and return early
[[ -o interactive ]] || exit 0

for fish:

if status is-interactive
    # Commands to run in interactive sessions can go here
end
Unix & Linux Stack Exchange
I was able to do sftp yesterday to a RHEL 5.4 box (RedHat) and today I can't. The message is "Received message too long 778199411", and after some investigation, it was due to my RHEL box...

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

No branches or pull requests

2 participants