proxy requesting username and password
Hello!
The current situation has forced me (like many others I guess) to use a proxy from my institution while working from home in order to access online resources that otherwise I could not view.
After having set the proxy in Firefox, everytime I open zotero a message shows up requesting username and password for that proxy. In the pop up window that appears I do not have the option to save the username and password so that I don't have to fill it in everytime I run zotero.
Looking the online documentation I gather I should be able to do that? And if simply close the pop up window after opening zotero nothing really seems to change?
I may have missed something while reading the online documentation but can you help me sort this out?
Thanks!
The current situation has forced me (like many others I guess) to use a proxy from my institution while working from home in order to access online resources that otherwise I could not view.
After having set the proxy in Firefox, everytime I open zotero a message shows up requesting username and password for that proxy. In the pop up window that appears I do not have the option to save the username and password so that I don't have to fill it in everytime I run zotero.
Looking the online documentation I gather I should be able to do that? And if simply close the pop up window after opening zotero nothing really seems to change?
I may have missed something while reading the online documentation but can you help me sort this out?
Thanks!
I think we can make this work, though. Stay tuned. Without proxy access, either no network access from Zotero will work and lots of things will be broken (if all traffic goes through the proxy) or gated PDFs won't be saved along with items (if there's a proxy auto-config file that routes particular sites through the proxy).
(These days, web-based proxies are more common, and Zotero supports those without needing to handle authentication itself, so this doesn't come up that much. But a real proxy does allow Zotero to download gated PDFs when using Add Item by Identifier or Find Available PDF within Zotero itself.)
Should I see this proxy in the proxy option of the zotero connector, in the configured proxy tab?
Thanks
You may also want to open the Config Editor in the Advanced pane of the preferences and toggle
signon.autologin.proxy
to true. That'd be the equivalent of the "Do not prompt for authentication if password is saved" option in the Firefox proxy preferences. We'll probably default that to true at the same time that we fix password saving.signon.autologin.proxy
as explained above.i have been having opposite problem. Zotero remembers an outdated username/password proxy combination that does not seem to be saved in either my computer network settings or my browser settings. If i replace them and have "remember this password" checked, the new settings are not remembered.
any clue what's going on?
Go to Tools → Developer → Run JavaScript and run this:
let logins = Services.logins.getAllLogins().filter(x => x.hostname.startsWith('moz-proxy://'));
for (let loginInfo of logins) {
Services.logins.removeLogin(loginInfo);
}
Then restart Zotero and the original values should have been cleared.
Thank you!