在14.04.01安装了V8,当打印报告时它会抛出以下消息:
无法打开文档“file:///tmp/sale.report_saleorder-1.pdf”。
不支持文件类型纯文本文档(text / plain)
答案 0 :(得分:1)
此问题是由于wkhtmltopdf包损坏。
您可以尝试使用以下命令安装它们 -
首先从系统中删除损坏的wkhtmltopdf。 使用 -
sudo apt-get purge wkhtmltopdf
然后尝试使用以下命令 -
cd /tmp/
然后为Odoo服务器下载推荐版本的wkhtmltopdf,目前为0.12.1: -
sudo wget http://download.gna.org/wkhtmltopdf/0.12/0.12.1/wkhtmltox-0.12.1_linux-trusty-amd64.deb
然后使用dpkg安装包: -
sudo dpkg -i wkhtmltox-0.12.1_linux-trusty-amd64.deb
为了正常运行,我们需要将二进制文件复制到适当的位置:
sudo cp /usr/local/bin/wkhtmltopdf /usr/bin
sudo cp /usr/local/bin/wkhtmltoimage /usr/bin