This is a spin off from "57765 - FILEOPEN via FTP from Server causes General Error" Steps how to reproduce: Proceed as you see in original report for a.m. Bug, but type a wrong password in Step 5 Expected: Error 530: Login incorrect Actual: Password dialog reappears without any warning or useful message
Thank you for reporting this enhancement request! I can confirm that this is a valid enhancement request on: Version: 4.3.0.0.alpha0+ Build ID: 84862db95a5e22b9ef89baa2a8a5deeffefbdef6 Date: Thu Apr 24 21:43:16 2014 +0300 Platform: Ubuntu Linux 14.04 x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + As I've been able to confirm the enhancement request I am marking as: New (confirmed) Enhancement Low - pretty obvious what's going on, most users would assume wrong password (or username). None the less valid request + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LibreOffice is powered by a team of volunteers, every bug is confirmed (triaged) by human beings who mostly give their time for free. We invite you to join our triaging by checking out this link: https://wiki.documentfoundation.org/QA/BugTriage There are also other ways to get involved including with marketing, UX, documentation, and of course developing - http://www.libreoffice.org/get-help/mailing-lists/. Lastly, good bug reports help tremendously in making the process go smoother, please always provide reproducible steps (even if it seems easy) and attach any and all relevant material
Some code pointers for the interested ones: If you open the mentioned dialog, you will see the string "Wrong user name and password for" on the password prompt dialog. Find the ui file which includes that string by using grep: git grep "Wrong user name and password for" You will see that the string is in the file "uui/uiconfig/ui/logindialog.ui" Then grep for "logindialog.ui" to find the source file which includes this ui file: git grep logindialog.ui You will find out that the ui file is included in the source file "uui/source/logindlg.cxx". Now you will need to read the logindlg.cxx file (and the corresponding .hxx file) to understand its logic, and move from there. You can also open the logindialog.ui file with "glade" to see it on the screen and be able to edit it visually.
Is this bug still active? As far as I can the dialog has message about wrong username/password when the password is wrong. http://imgur.com/a/YNg59 Or am I reproducing it wrong? I clicked the Servers... button, added FTP and then clicked it in the Places panel.
A polite ping, still working on this bug
(In reply to jani from comment #4) > A polite ping, still working on this bug No, as far as I can see I couldn't reproduce the issue.
(In reply to Aleksas Pantechovskis from comment #5) > (In reply to jani from comment #4) > > A polite ping, still working on this bug > > No, as far as I can see I couldn't reproduce the issue. I can confirm too that I get the proper message with the File -> Save Remote -> FTP protocol, on macOS in my case. The only other case where this would apply is via the save as dialog, but then the platform specific protocol handler will take over (like fish for e.g.). I'd like to close this bug report with UNCONFIRMED, Xisco can you briefly ensure, from a QA standpoint, that I took the proper steps in closing a really old report like this?
(In reply to admin from comment #6) > I'd like to close this bug report with UNCONFIRMED, Xisco can you briefly > ensure, from a QA standpoint, that I took the proper steps in closing a > really old report like this? I think we can safely set this ticket to resolved. (removing keywords difficultyBeginner, easyHack, skillCpp, topicUI)
Created attachment 135785 [details] Error message as it works in the current implementation
thanks for the extra testwork, 'admin' ;) and Aleksas!