0
votes
2answers
108 views

Cannot get wkhtmltopdf to work in rails

I am trying to use wicked_pdf in my rails 3 application. I have followed all the tutorials and I am getting this error: Failed to execute: "/usr/local/bin/wkhtmltopdf" -q ...
0
votes
1answer
56 views

generate outline (aka toc, aka bookmarks) using wicked_pdf on heroku

Has anyone had any luck getting outline generation to work with wicked_pdf on Heroku? I have no problems in dev mode (on windows!), but on Heroku I can't make outlines happen. I've tried explicit ...
0
votes
0answers
175 views

render content as HTML and print HTML->PDF with PDFKit

I want to export bills from my Ruby on Rails application as PDF. My problem is quite strange: I can convert Websites to PDF using PDFKit, I can convert any HTML code to PDF and I can save a rendered ...
0
votes
0answers
162 views

pdfkit / wkhtmltopdf 404 at getJSON

when I do wkhtmltopdf http://localhost:8080/report_generators/1 out.pdf I get a nice pdf output as I expected. However when using pdfkit in rails I don't get the desired output. Somehow I get ...
1
vote
0answers
57 views

Wicked_pdf page_size issue on Heroku

I use wicked_pdf to generate pdf calendar in my rails3 app. Everything work perfectly locally but on heroku it gave me A4 page size whenever i specify :page_size => 'A3'. I already try to use ...
0
votes
1answer
263 views

rails; wicked_pdf is wicked slow

1.9.2 & rails 3.0.9 wicked_pdf 0.8.0 wkhtmltopdf 0.10.0 rc2 @ /usr/local/bin/ nginx and pow It seems to barely work, if at all, and it's extremely slow when it does. What I've done: after bundle ...
2
votes
1answer
242 views

How to create PDF with header / footer using IO.popen and wkhtmltopdf in rails 3

I want to create PDF file using IO.popen command with wkhtmltopdf. I successfully create pdf file using wkhtmltopdf command using below code: IO.popen('wkhtmltopdf '+ source_url.to_s + ' ' + ...
0
votes
1answer
308 views

highcharts display in my render html page which i want to convert into PDF using wkhtmltopdf in rails

I have html page with some text data and graph. I am using wkhtmltopdf gem to generate pdf from html page. using highcharts, i am generating graph. I can able to generate PDF successfully but PDF ...
7
votes
3answers
2k views

Why does PDFKit/wkhtmltopdf hang but renders PDF as expected when Rails app is killed?

Background After reading around it seemed to me that Prawn is out and wkhtmltopdf is in. It also seems like the PDFKit and wicked_pdf gems for Rails are the new cool. So I found a screencast by Ryan ...
0
votes
1answer
339 views

Jquery trigger when PDF file downloded

I am using wicked_pdf plug-in for generating pdf. I am showing message and spinner when user click on pdf link and i want to hide that when pdf is generated and pushed to browser for download/show. I ...
2
votes
1answer
139 views

How to use WKhtmltopdf Library without using executable

In ruby on rails project. I am using PDFKit gem for generating pdf reports PDFKit uses wkhtmltopdf executable which is to be installed on the machine . And next step to give the path of the ...
2
votes
0answers
185 views

Ruby On Rails : PdfKit Runtime Error

pdfkit gem successfully installed in my machine. Then I run gem install wkhtmltopdf-binary and output was Successfully installed wkhtmltopdf-binary-0.9.9.1 1 gem installed Installing ri documentation ...
0
votes
1answer
126 views

How to show PDF file Inline using PDFKit in Rails3

I want to know about PDFKit code to show the pdf inline of any html page I want the code using send_data() or send_file() or render.pdf {} something like this I am able to create the pdf ...
0
votes
0answers
142 views

Inline Pdf is not generated in Rails PDFKit using wkhtmltopdf

I have the following code to generate the pdf and render it in environment.rb Mime::Type.register "application/pdf", :pdf in application.rb require 'pdfkit' config.middleware.use ...
1
vote
1answer
151 views

wicked_pdf data flow issue

Does anyone have any suggestions on how I would start content always from next page when it's breaking between pages. Example - I have list of photos which i am exporting to pdf. While listing some ...
0
votes
1answer
303 views

pdfkit gem generating pdf links as text (not click-able links)

I'm generating pdf with gem pdfkit (successfully) only issue that I have is that my pdf links are pure text (with color doh) but I cannot click on them Generated pdf file: http://bit.ly/MZBdmL ...
2
votes
1answer
592 views

How to use background image inside CSS for wicked_pdf

I'm using the wicked_pdf plugin with a rails 3.0 project. I want to define background with image inside css file. Here is my css code .thumb-image { background: ...
2
votes
1answer
567 views

Ruby on rails wkhtmltopdf css style sheets not rendering on production (linux) server

In local development environment(windows) pdf with Css styles generated successfully. but in hosting linux server environment pdf generated without applying css styles.Below is my wkhtmltopdf ...
1
vote
1answer
679 views

ruby on rails (wkhtmltopdf header footer issue)

In local environment pdf with header footer generated successfully. but in hosting linux server environment pdf generated without header and footer.Below is my wkhtmltopdf (WickedPdf) config ...
0
votes
1answer
329 views

pdf is not generated in production

right now i'm generate pdf using wkhtmltopdf gem.In development it is working fine. if i'm run my project in production i got this error.already i'm install these two gems "wkhtmltopdf" & ...
1
vote
1answer
1k views

WickedPDF missing layout

I have a controller like this: def show @professor = Professor.find(params[:id]) respond_to do |format| format.html format.pdf do render :pdf => "file_name" end ...
0
votes
1answer
168 views

How to open pdf file in wicked_pdf?

Right now im using rail 3.0.0 version.now im generate the pdf file and save that file in public folder using wicked_pdf.now i want open that pdf file using controller action.Im using this code in ...
0
votes
0answers
82 views

How to hidden the popup window in wicked_pdf

Right now in using rails 3.0.0. I generate the pdf file using wicked pdf.now i wants to display only the view page (html)in the browser and the generated pdf should be saved automatically in public ...
0
votes
2answers
2k views

How to Install wkhtmltopdf?

Now i am working on rails 3.0.0.i am using Ubuntu 11.10 ,64 bit os.i want to install wkhtmltopdf.please tell me the static version of wkhtmltopdf.
0
votes
1answer
156 views

jruby IO.popen read hangs in action when requests are made to the local dev server

I just want to send the output of wkhtmltopdf to the user. It shouldn't be so hard. def it send_pdf "file.pdf" end def send_pdf(file) url= url_for(params) # Example: ...
0
votes
2answers
1k views

Can't create pdfs with pdfkit - PDFKit::NoExecutableError

I got pdfkit install and even set up wkhtmltopdf installed as well however I'm getting the following error everytime I try to create a pdf. PDFKit::NoExecutableError No wkhtmltopdf executable found ...
3
votes
2answers
818 views

wkhtmltopdf not working (pdfkit)

I'm having trouble generating a PDF out of a html page. I'm using PDFkit. I installed also wkhtmltopdf following the installation instructions. In 'usr/local/bin/' there is now a file called ...
1
vote
1answer
153 views

Embed a video in a pdf

I'm using wicked_pdf with ruby on rails and am able to generate a pdf with images and texts, but no videos. Is it possible to do it? If so, how?
3
votes
1answer
1k views

pdfkit not rendering correctly in rails 3.1

I have followed the following railscast about adding pdfkit to an application, and I am having some issues with the generation of pdfs. Here are the following things that I have done: I downloaded ...
2
votes
2answers
900 views

Embedding SVG in PDF using Wicked_PDF (wkhtmltopdf)

When I try to include an SVG in a PDF generated by wicked_pdf (wkhtmltopdf), it comes out blank. Any idea how to get the svg to display in the pdf? app/views/barcodes/to_pdf.html.haml ...
1
vote
1answer
321 views

How to use UTF-8 in PDFKit in Rails?

I'm using PDFKit in my Rails app to generate PDF's. Problem is some of my content in contains non-ascii characters. How do I force it to use UTF-8?
4
votes
6answers
2k views

Cannot get wicked_pdf to work on heroku ? (but it works locally)

Following the guide on https://github.com/jordan-brough/heroku-pdf I managed to have wicked_pdf working locally and creating PDF as expected. However once I push to heroku, the app crashes after a ...
4
votes
1answer
563 views

PDFKit is giving me a 406, and rendering an empty pdf

Rails 3 PDFKit 0.5.0 windows 7 with wkhtmltopdf installed #/config/initializers/pdfkit.rb require 'rbconfig' PDFKit.configure do |config| if !((Config::CONFIG['host_os'] =~ /mswin|mingw/).nil?)#if ...
0
votes
1answer
501 views

Can wicked_pdf or wkhtmltopdf generate a protected pdf?

So, I have wicked_pdf up and running, now I am wondering if I can password protect the pdf being generated so it is not easily editable. Is this possible? Perhaps a better question is can ...
2
votes
2answers
3k views

wicked_pdf and wkhtmltopdf page size issue

I used these settings WickedPdf::config = { :layout => 'application.pdf.html', # use 'pdf.html' for a pfd.html.erb file :wkhtmltopdf => '/bin/wkhtmltopdf', # path to ...
1
vote
1answer
1k views

Rails 3 + PDFKit Problem: Permission denied (Errno::EACCES)

I would like to use PDFKit in my Rails 3 application on Windows. I installed wkhtmltopdf and the pdfkit gem. Here is the code that I use to create the PDF: class JobsController < ...
0
votes
4answers
2k views

Rails: Why “sudo” command is not recognized?

In my application directory (on Windows) I run: sudo pdfkit --install-wkhtmltopdf as explained here, but I got this error: 'sudo' is not recognized as an internal or external command, operable ...