Basically, there's something in the URL that Zotero thinks is invalid, and we've only seen this from Chinese users (and maybe only with Nut Cloud). Is there some part of the username, password, or URL here that's using Chinese characters, or anything other than regular alphanumeric characters (abcd…1234…)?
Yeah, it's not about your Zotero password — just your Nut Cloud username and password.
If your Nut Cloud username includes @, that might cause problems, but in theory Zotero should be handling that properly. Does a @ or any other special character appear anywhere else in the URL path?
If you still get the error with all plugins disabled, you can try pasting this into Tools → Developer → Run JavaScript and replacing the url, username, and password values in the first three lines with the actual values, and then running it. If it works, you should see a formatted URL, with the @ correctly replaced with %40 and a period replaced with %2E. If not, you'll get the NS_ERROR_MALFORMED_URI error. (Don't paste the URL here if it works, since it will contain your password.)
I’m not sure what you mean by that. If you’re saying you get an error with the code above, experiment with it until you figure out what exactly is causing the error in the values you’re entering.
@Mocun: The point here would be to experiment with those first three lines to figure out what part of your URL, username, or password causes the error to occur. (I'm assuming you don't get the error if you just paste in the exact above without putting in your own URL, username, and password. You certainly shouldn't get an error with the exact code above.)
@dstillman, I'm encountered with the same promblem when using nut cloud for sync my files. I tried to disable all the third party plugins but unfortunately it didn't work. and then I paste the code in tools-developer-run java script, and changed the 3 lines as you said. After that I got following information in the result block "https://myacount@qq.com:mypassword@dav.jianguoyun.com/dav/zotero/" in which '@' in my acount transformed to %40 and '.' in my acount changed to %2E. It still confuse me what triggered the error.
If your Nut Cloud username includes
@
, that might cause problems, but in theory Zotero should be handling that properly. Does a@
or any other special character appear anywhere else in the URL path?var url = 'example.com/webdav/zotero/';
var username = 'foo@example.com';
var password = '1234';
url = 'https://'
+ encodeURIComponent(username) + ':' + encodeURIComponent(password) + '@'
+ url
+ (url.endsWith('/') ? '' : '/');
Services.io.newURI(url, null, null).spec
If you still get the error with all plugins disabled, you can try pasting this into Tools → Developer → Run JavaScript and replacing the
url
,username
, andpassword
values in the first three lines with the actual values, and then running it. If it works, you should see a formatted URL, with the@
correctly replaced with%40
and a period replaced with%2E
. If not, you'll get the NS_ERROR_MALFORMED_URI error. (Don't paste the URL here if it works, since it will contain your password.)