site-wide installation
I've looked around in the zotero forums and googled, but I haven't seen a way to install zotero for an entire organization. We're pushing zotero for our lab of 100 researchers, and I had a way to install zotero (once) for all users, but that stopped working some time ago.
Are there provisions (and, even better, a howto) for installing the zotero extensions globally for all Firefox users? It seems quite redundant to have 100 different individuals download and install Zotero in each home directory.
We're a three-OS shop: linux, OS X, and windows XP/7.
Thanks in advance.
Are there provisions (and, even better, a howto) for installing the zotero extensions globally for all Firefox users? It seems quite redundant to have 100 different individuals download and install Zotero in each home directory.
We're a three-OS shop: linux, OS X, and windows XP/7.
Thanks in advance.
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Upgrade Storage
I think this method might no longer work in Firefox 4 in Windows, though, which would be pretty bad. Still works fine on OS X (and I assume Linux).
*****
Zotero MacWod Integration
Installation could not be completed because an error occurred. Please ensure that Microsoft Word is closed, and the restart Firefox
*****
I just filed bug 127684372 with the error report.
The text file trick definitely works on OS X.
NFS could easily break things.
Dan will need the error ID and possibly debug output-- for the latter you may need to start Firefox with debug output enabled.
That's why I posted the contents of the error dialog yesterday and opened a bug (see above). For the curious, here's the script I'm using to extract the xpis:
#!/bin/sh -x
# Hack an extension installer a different way
source=/some-base-path/Firefox-4.0.1
py=pythonext-2.6.2.20100203.1.9.2_2.5.4.20110318.2.0-Darwin_universal.xpi
zot=zotero-2.1.6.xpi
mw=Zotero-MacWord-Plugin-3.1.2.xpi
mkdir -p /Library/Application\ Support/Mozilla/Extensions/
cd /Library/Application\ Support/Mozilla/Extensions/
mkdir \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
cd \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
# python
mkdir pythonext\@mozdev.org
cd pythonext\@mozdev.org
unzip -q $source/$py
cd ..
# zotero
mkdir zotero@chnm.gmu.edu
cd zotero@chnm.gmu.edu
unzip -q $source/$zot
cd ..
# Macword
mkdir zoteroMacWordIntegration@zotero.org
cd zoteroMacWordIntegration@zotero.org
unzip -q $source/$mw
But the fact that you're getting non-Zotero-related errors too suggests that NFS could be the problem.