2012-09-06 15 views
6

पीडीएफकिट मणि सफलतापूर्वक मेरी मशीन में स्थापित है। तब मैं gem install wkhtmltopdf-binary चलाने के लिए और उत्पादनरेल पर रूबी: पीडीएफकिट रनटाइम त्रुटि

Successfully installed wkhtmltopdf-binary-0.9.9.1 
1 gem installed 
Installing ri documentation for wkhtmltopdf-binary-0.9.9.1... 
unable to convert "\xC0" from ASCII-8BIT to UTF-8 for bin/wkhtmltopdf_linux_386, skipping 
unable to convert "\xA3" from ASCII-8BIT to UTF-8 for bin/wkhtmltopdf_linux_x64, skipping 
unable to convert "\xCE" from ASCII-8BIT to UTF-8 for bin/wkhtmltopdf_darwin_386, skipping 
Installing RDoc documentation for wkhtmltopdf-binary-0.9.9.1... 
unable to convert "\xC0" from ASCII-8BIT to UTF-8 for bin/wkhtmltopdf_linux_386, skipping 
unable to convert "\xA3" from ASCII-8BIT to UTF-8 for bin/wkhtmltopdf_linux_x64, skipping 
unable to convert "\xCE" from ASCII-8BIT to UTF-8 for bin/wkhtmltopdf_darwin_386, skipping 

था ठीक है, तो मेरा पेज की पीडीएफ संस्करण का उपयोग करने की कोशिश की। लेकिन यह भी मुझे एक त्रुटि से पता चला है रनटाइम त्रुटि ControllerName # दिखाने

command failed: "/home/yasir/.rvm/gems/ruby-1.9.3-p194/bin/wkhtmltopdf" "--page-size" "Letter" "--margin-top" "0.75in" "--margin-right" "0.75in" "--margin-bottom" "0.75in" "--margin-left" "0.75in" "--encoding" "UTF-8" "--quiet" "-" "- 

"

उत्तर

1

नीचे के रूप में अपने pdfkit कॉन्फ़िगरेशन फ़ाइल (config/initializers/pdfkit.rb) में wkhtmltopdf स्थापना पथ जोड़े

PDFKit.configure do |config| 
    # Download compatible version of wkhtmltopdf from 'http://wkhtmltopdf.org/downloads.html' 
    # Install it in your system. 
    # Then run 'which wkhtmltopdf' in your terminal to identify the path and update it below 
    config.wkhtmltopdf = '/usr/local/bin/wkhtmltopdf' 
end 
संबंधित मुद्दे