11

I am using Ubuntu 11.04 to develop an app in Ruby on Rails. In the app I need to generate pdf documents. So I am using the wicked_pdf and wkhtmltopdf-binary gems.

In the development environment in my system everything is working fine. But once I deployed the app in production on CentOS 5.6 using Phusion Passenger, when I try to generate pdfs on the fly its giving me the following error:

RuntimeError (Location of wkhtmltopdf unknown)

I am using Ruby1.9.2.p136 Rails 3.1.1

Any help will be much appreciated....Thanks.

Promise Preston
  • 24,334
  • 12
  • 145
  • 143
dbaruah
  • 113
  • 1
  • 1
  • 4

6 Answers6

12

An alternative is to install the binary via the Gemfile.

Just add the following line to your production group:

gem 'wkhtmltopdf-binary'

That should add binary support for linux-i386, amd64, and darwin.

And then run

bundle install --without development test

to install the gem in a production environment. After which, you just restart your server.

That's all.

I hope this helps

Promise Preston
  • 24,334
  • 12
  • 145
  • 143
Skully
  • 485
  • 4
  • 13
11

do you use static wkhtmltopdf binary? i downloaded it here and extraced it to /path/to/rails_app/bin

and add it to rails like this:

#config/initializers/wicked_pdf.rb
WickedPdf.config = {
  :exe_path => Rails.root.join('bin', 'wkhtmltopdf-i386').to_s,
}
ben
  • 1,819
  • 15
  • 25
8

for mac os - x you should install wkhtmltopdf by homebrew

$ brew tap homebrew/boneyard # the wkhtmltopdf formula is now inactive but still available in the boneyard repository 
$ brew install wkhtmltopdf
Hannes
  • 2,451
  • 2
  • 18
  • 11
  • It's not available anymore: `Error: No available formula for wkhtmltopdf` – Lucas Caton Oct 27 '14 at 04:04
  • try again but first install boneyard: $ brew tap homebrew/boneyard the brew formular wkhtmltopdf is inactive but still available under the boneyard repo – Hannes Oct 27 '14 at 07:40
4

Solution for OS X Yosemite

To get it working on Mac OS X 10.10 (Yosemite), install the wkhtmltopdf-binary gem and then put it in your config/initializers/wicked_pdf.rb:

module WickedPdfHelper
  if Rails.env.development?
    if RbConfig::CONFIG['host_os'] =~ /linux/
      executable = RbConfig::CONFIG['host_cpu'] == 'x86_64' ? 'wkhtmltopdf_linux_x64' : 'wkhtmltopdf_linux_386'
    elsif RbConfig::CONFIG['host_os'] =~ /darwin/
      executable = 'wkhtmltopdf_darwin_386'
    else
      raise 'Invalid platform. Must be running linux or intel-based Mac OS.'
    end

    WickedPdf.config = { exe_path: "#{Gem.bin_path('wkhtmltopdf-binary').match(/(.+)\/.+/).captures.first}/#{executable}" }
  end
end

Ps.: This solution will work on Linux too.

Lucas Caton
  • 3,027
  • 1
  • 24
  • 34
  • 2
    Great! This worked for me. Do you any idea why this is now needed? – nathanvda Oct 30 '14 at 12:04
  • @nathanvda I have no idea. But I'd like to know as well. – Lucas Caton Nov 02 '14 at 08:20
  • For mac osx, same way that @ben noticed, just you should set path where your binary file is placed, and also put right name, for example: Rails.root.join('/usr/local/bin', 'wkhtmltopdf').to_s, – yozzz Jun 03 '15 at 13:32
1

MAC OSX:

brew install wkhtmltopdf

this will let you to install

brew install Caskroom/cask/wkhtmltopdf

then in config/initializers/wicked_pdf.rb

WickedPdf.config = {
  exe_path: '/usr/local/bin/wkhtmltopdf'
}
Sohair Ahmad
  • 441
  • 8
  • 19
0

Just had a similar problem.

As stated in readme, I created an initializer with:

WickedPdf.config = {
  exe_path: '/usr/local/bin/wkhtmltopdf'
}
Magnuss
  • 2,270
  • 19
  • 21