zoukankan      html  css  js  c++  java
  • ODOO Unable To Find Wkhtmltopdf On This System. Error/Bug ?

    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 wkhtmltopdf 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/bin

    sudo cp /usr/local/bin/wkhtmltoimage /usr/bin

    4) Restart Odoo server and then try again.

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

    [stextbox id=”info”]Your opinions, comments and suggestions are important to keep the page updated and interesting. [/stextbox]

  • 相关阅读:
    javaEE中的字符编码问题
    java泛型中<?>和<T>有什么区别?
    list去重,String[]去重,String[]去空,StringBuffer去重,并且以','隔开,list拆分
    字符串转驼峰
    动态生成16位不重复随机数、随机创建2位ID
    POI不同浏览器导出名称处理
    图片转流
    RSA加密解密
    idea 使用在java 包下的ftl、xml 文件编译问题
    深入理解SQL的四种连接-左外连接、右外连接、内连接、全连接
  • 原文地址:https://www.cnblogs.com/chjbbs/p/5194892.html
Copyright © 2011-2022 走看看