Word could not communicate with Zotero. Please ensure that Zotero is open and try again.
Hi everyone,
I’m having trouble with the Zotero plugin for Word. When I try to add a citation, a small gear icon shows up in the status bar, then disappears, and I get the error message: “Word could not communicate with Zotero. Please ensure that Zotero is open and try again.”This issue has never occurred in my previous use.
Here’s what I’ve tried so far:
1. Made sure Zotero is open
2. Reinstalled the Word plugin: I’ve gone through the process of reinstalling the Zotero plugin from within Zotero, and it looks like it’s installed correctly.
3. Tried different versions: I’ve tested different versions of both Zotero and Word, including Zotero 6 and Word 2019, but the problem still happens. My Word current version is 16.93 (25011212).
4. Followed the troubleshooting steps on the site: I went through the official troubleshooting guide, checked plugin settings, macro settings, and manually copied the zotero.dotm file but no luck.
5. Restarted everything: I’ve restarted both Zotero and Word multiple times, even rebooted my computer, but the issue persists.
Any help would be much appreciated! I’m stuck here and could really use some guidance on how to fix this.
Thanks so much!
I’m having trouble with the Zotero plugin for Word. When I try to add a citation, a small gear icon shows up in the status bar, then disappears, and I get the error message: “Word could not communicate with Zotero. Please ensure that Zotero is open and try again.”This issue has never occurred in my previous use.
Here’s what I’ve tried so far:
1. Made sure Zotero is open
2. Reinstalled the Word plugin: I’ve gone through the process of reinstalling the Zotero plugin from within Zotero, and it looks like it’s installed correctly.
3. Tried different versions: I’ve tested different versions of both Zotero and Word, including Zotero 6 and Word 2019, but the problem still happens. My Word current version is 16.93 (25011212).
4. Followed the troubleshooting steps on the site: I went through the official troubleshooting guide, checked plugin settings, macro settings, and manually copied the zotero.dotm file but no luck.
5. Restarted everything: I’ve restarted both Zotero and Word multiple times, even rebooted my computer, but the issue persists.
Any help would be much appreciated! I’m stuck here and could really use some guidance on how to fix this.
Thanks so much!
Upgrade Storage
However, the same issue still occurs in Word.
Thanks for your help.
curl -X GET "http://127.0.0.1:23119/integration/macWordCommand?agent=MacWord16&command=addEditCitation&document=/Applications/Microsoft%20Word.app/&templateVersion=2"do you see a citation dialog appear from Zotero?
I really appreciate your help with my question。
after i using the system's curl the zotero add-in finally works!
In any case, I guess we should hard-code this to /usr/bin/curl. No reason to use any other version in the path.
But hard-code this to /usr/bin/curl is a once-and-for-all solution.
Step 1: Identify which curl is being used
Open Terminal and run: which curl
If this shows a path like /Users/yourusername/anaconda3/bin/curl or anything other than /usr/bin/curl, then you've found the issue.
Step 2: Test with system curl
Try running the curl command using the system's curl explicitly:
/usr/bin/curl -X GET "http://127.0.0.1:23119/integration/macWordCommand?agent=MacWord16&command=addEditCitation&document=/Applications/Microsoft Word.app/&templateVersion=2"
If this works (shows a citation dialog), then the issue is confirmed.
Step 3: Check your shell configuration
The problem is likely in one of these files:
~/.zshrc (if you're using zsh)
~/.bash_profile (if you're using bash)
~/.zprofile
Look for lines that modify the PATH variable, especially ones that add Anaconda paths to the beginning. For example:
export PATH="/Users/yourusername/anaconda3/bin:$PATH"
Step 4: Permanent solution
Modify your shell configuration file to ensure system paths come before Anaconda paths. Change lines like:
export PATH="/Users/yourusername/anaconda3/bin:$PATH"
to:
export PATH="$PATH:/Users/yourusername/anaconda3/bin"