pdf installation not recognized
In our case (Debian Lenny), the setup options complain of not having pdftotext and pdfinfo installed, while this is not true (they are part of poppler-utils|xpdf-utils).
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.
ln -s /usr/bin/pdfinfo /home/paolo/.mozilla/firefox/pdfinfo-Linux-x86_64 (what the setup windo is asking for), but still Zotero complains about not finding them. However, the obviously good sloution is having zotero looking for them in the SELinux path.
Thanks.
There is at least one other thread on this forum on the topic. Search "PDF indexing linux"
Many tanks.
The main problem, though, was just that an x86_64 version of the Xpdf utilities wasn't available via the installer. That's now fixed, so I'd recommend removing the symlinks and installing from the Zotero prefs. (You can leave the pdftotext symlink to your package manager version if you want, since we just use the official pdftotext binary, but pdfinfo needs some custom modifications to work.)
Let us know if you have any problems.
It's somewhat moot until we can use an unmodified version of pdfinfo. We currently use a custom build that writes to a text file, since I haven't found any way to get stdout back from processes in Firefox via JS. If we could do that, we could use the installed Xpdf tools on Linux and OS X if they were available, but otherwise we're stuck with this solution.
"It's somewhat moot until we can use an unmodified version of pdfinfo. We currently use a custom build that writes to a text file, since I haven't found any way to get stdout back from processes in Firefox via JS. If we could do that, we could use the installed Xpdf tools on Linux and OS X if they were available, but otherwise we're stuck with this solution."
So, why not then just create a 4 line shell script pdftotext_wrapper.sh containing smth like
#!/bin/bash
ofile=$1
shift
pdftotext $* > $ofile
?
then you could call it instead of pdftotext and rely on default pdftotext installation... or am I missing the point?