Trouble adding PDF files on websites
Hello!
I am having trouble adding PDF files with...pretty much all the websites. At leats, it is not working on the main ones (Cairn, JSTOR, Taylor and Francis, etc.). The odd thing is that I am able to add PDF files with my laptop. However, on my main computer, it is not working at all. Could someone give some help regarding that? Full disclosure: I don't know anything about coding. So bear with me! Thank you.
I am having trouble adding PDF files with...pretty much all the websites. At leats, it is not working on the main ones (Cairn, JSTOR, Taylor and Francis, etc.). The odd thing is that I am able to add PDF files with my laptop. However, on my main computer, it is not working at all. Could someone give some help regarding that? Full disclosure: I don't know anything about coding. So bear with me! Thank you.
(To be clear, you should be saving from the article page, not trying to save the PDF directly, though that should generally work too.)
Yeah, that is the issue at stake: I am not able to save from the article page.
Thanks for the help!
Can you provide a Debug ID for Zotero startup, using the "Restart with Logging Enabled…" option?
And yes, I am connecting via a proxy server (the one of my university).
Have your proxy credentials changed recently? Did you change any hidden settings related to the proxy login?
Try running the code here:
https://forums.zotero.org/discussion/comment/374672/#Comment_374672
Does that change anything?
I enabled signon.autologin.proxy to true and ran the code in JavaScript, but it didn't change much. However, in the configuration editor, I changed network.proxy.type to 0 and network.proxy.share_proxy_settings to true. It seems that I am able to upload the PDF of some websites (Taylor and Francis, Cairn and JSTOR) which is great. However, on ScienceDirect, I have the Captcha loop that some people mentioned in the other discussion that you forwarded (https://forums.zotero.org/discussion/comment/374672/#Comment_374672).
The ScienceDirect issue is unrelated and should be fixed soon.
network.proxy.share_proxy_settings
wouldn't be relevant here, and I'd discourage you from changing random hidden settings.signon.autologin.proxy
to false for now. To clarify, after running the linked code, when you next start up Zotero, you should get a proxy password prompt with nothing filled in. If you enter the correct credentials, it should work. If it's not, we'd want to see a Debug ID for Zotero startup through doing that.signon.autologin.proxy
to false? Yes.But then what are you doing that causes the proxy password window to show up?
Here is the Debug ID: D2086857318
The proxy password is not popping up anymore now, neither for Zotero nor for the websites.
Run this instead:
let logins = (await Services.logins.getAllLogins()).filter(x => x.hostname.startsWith('moz-proxy://'));
for (let loginInfo of logins) {
Services.logins.removeLogin(loginInfo);
}
Then restart Zotero and try again.