PDFtk Server on OS X 10.11

Thank you for your patience. I have successfully tested this pdftk installer and binary on OS X 10.11, El Capitan: https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk_server-2.02-mac_osx-10.11-setup.pkg I will update our PDF Labs site soon to reflect this update. If you already have pdftk installed from the old installer, this should install right on top of it without a problem — … Read more

How to pass variables as stdin into command line from PHP

I’m not sure about what you’re trying to achieve. You can read stdin with the URL php://stdin. But that’s the stdin from the PHP command line, not the one from pdftk (through exec). But I’ll give a +1 for proc_open() <?php $cmd = sprintf(‘pdftk %s fill_form %s output -‘,’blank_form.pdf’, raw2xfdf($_POST)); $descriptorspec = array( 0 => … Read more