博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ODOO Unable To Find Wkhtmltopdf On This System.
阅读量:6834 次
发布时间:2019-06-26

本文共 1735 字,大约阅读时间需要 5 分钟。

hot3.png

if you are using ODOO version 8 and getting some error like –

Unable to find Wkhtmltopdf on this system. The report will be shown in html.

It means you need to upgrade the version of Wkhtmltopdf library on your server.

Let me elaborate this problem first-

As we all know, when we install ODOO-version 8 on the server, we have also install some necessary libraries too like – python-decorator, python-werkzeug and many more libraries. ” Wkhtmltopdf ” is also one of them. Now, lets come to the main problem, when we install “wkhtmltopdf” on server, using command like –

sudo apt-get install -y wkhtmltopdf

this command install an outdated wkhtmltopdf and odoo generate a wrong pdf (with 0 byte ) and popup error saying to update to the new wkhtmltopdf. So this is not a ODOO Error, but we can say it`s a wkhtmltopdf issue(moreover it`s a version issue).

Solution is to upgrade ” wkhtmltopdf ” to 0.12.1 like this –

1) Download wkhtmltopdf version from  depending on your system arch (32 or 64 bit) –

# For 64-bit - Linux (Ubuntu Trusty) - Ubuntu 14.04 sudo wget http://sourceforge.net/projects/wkhtmltopdf/files/archive/0.12.1/wkhtmltox-0.12.1_linux-trusty-amd64.deb # For 64-bit - Centos- 7.1.1503 (Core)  sudo wget http://sourceforge.net/projects/wkhtmltopdf/files/archive/0.12.1/wkhtmltox-0.12.1_linux-centos7-amd64.rpm

2) Install the downloaded package as –

# For Ubuntu sudo dpkg -i wkhtmltox-0.12.1_linux-trusty-amd64.deb # For Centos sudo rpm -Uvh wkhtmltox-0.12.1_linux-centos7-amd64.rpm

3) Copy files as –

sudo cp /usr/local/bin/wkhtmltopdf /usr/binsudo cp /usr/local/bin/wkhtmltoimage /usr/bin

4) Restart Odoo server and then try again.

That`s it !!! I hope it will help someone.

转载于:https://my.oschina.net/u/241688/blog/630474

你可能感兴趣的文章
CentOS6.5下安装mysql-5.6
查看>>
Unable to find the wrapper "https"错误的解决办法
查看>>
Guava并发:ListenableFuture与RateLimiter示例
查看>>
hdoj_1042_N!_大數優化_模擬
查看>>
美团扫码付小程序的优化实践
查看>>
Spark 批量存取 HBase
查看>>
将应用的数据库复制到SD卡上面
查看>>
注意string类型的比较,string当做数据类型去比较
查看>>
第六天 Java的数据溢出应对方式
查看>>
Ubuntu缺少libjawt.so
查看>>
ASP.NET Core2.0 学习笔记(一)
查看>>
创建一个简单的PHP扩展
查看>>
Mastering Nginx 笔记一----Nginx基础及location解释
查看>>
第一天开始写博客
查看>>
(翻译)Quartz官方教程——第六课:CronTrigger
查看>>
squid windows 配置日志
查看>>
wordpress 安装主题
查看>>
linux磁盘管理及文件系统
查看>>
梭子鱼垃圾邮件网关-Barracuda Spam & Virus Firewall Email Alert: outQueueHigh
查看>>
mysql性能调优my.cnf详解
查看>>