Reputation: 2671
I have problem with replacing wkhtmltopdf
with new one on Ubuntu 12.04 server.
Old version was on this location : /usr/local/bin/wkhtmltopdf
and it was working ok but with old bugs. I have downloaded new version for x64 linux from
http://sourceforge.net/projects/wkhtmltopdf/files/0.12.1-dev/ .
After download and unpacking tar, I copy all folders/files to /usr/local/
|-- bin
| |-- wkhtmltoimage
| `-- wkhtmltopdf
|-- include
| `-- wkhtmltox
| |-- dllbegin.inc
| |-- dllend.inc
| |-- image.h
| `-- pdf.h
`-- lib
|-- libwkhtmltox.so.0 -> libwkhtmltox.so.0.12.1
|-- libwkhtmltox.so.0.12 -> libwkhtmltox.so.0.12.1
`-- libwkhtmltox.so.0.12.1
After all that when I run wkhtmltopdf
I get this message :
wkhtmltopdf: error while loading shared libraries: libgstapp-0.10.so.0: cannot open shared object file: No such file or directory
Where can I find that lib?
Upvotes: 2
Views: 1555
Reputation: 2671
Found the solution, there was missing this package : libgstreamer-plugins-base0.10-0
. Solved by :
sudo apt-get install libgstreamer-plugins-base0.10-0
Upvotes: 2