Comments and changes to this ticket
-
dleffler September 24th, 2011 @ 09:07 PM
- Title changed from Migrate pdf creation to a universal/php based solution to Upgrade: Migrate pdf creation to a universal/php based solution
-
dleffler October 31st, 2011 @ 01:01 AM
Actually, this looks like a perfectly simple solution http://html2pdf.fr/en/default
<?php $content = " <page> <h1>Exemple d'utilisation</h1> <br> Ceci est un <b>exemple d'utilisation</b> de <a href='http://html2pdf.fr/'>HTML2PDF</a>.<br> </page>"; require_once(dirname(__FILE__).'/html2pdf/html2pdf.class.php'); $html2pdf = new HTML2PDF('P','A4','fr'); $html2pdf->WriteHTML($content); $html2pdf->Output('exemple.pdf'); ?>
-
dleffler April 20th, 2012 @ 12:46 AM
Comments have been added to the orderController on how to replace WKPDF with either html2pdf or dompdf, both of which are php solutions eliminating the need for an external binary application.
-
-
dleffler September 26th, 2012 @ 01:31 AM
At this point, the solution looks to be dompdf which is an add-on package, but already implemented everywhere but in ecommerce. This is a php-based solution which doesn't required server specific binaries.
-
dleffler February 13th, 2013 @ 03:27 PM
- Milestone set to 2.2.0alpha2
-
dleffler February 16th, 2013 @ 02:56 AM
- Milestone changed from 2.2.0alpha2 to 2.2.0alpha3
-
dleffler March 2nd, 2013 @ 09:45 PM
- Milestone changed from 2.2.0alpha3 to 2.2.0beta1
-
dleffler March 2nd, 2013 @ 09:50 PM
- Milestone changed from 2.2.0beta1 to 2.2.1
-
-
dleffler October 22nd, 2013 @ 01:24 PM
- Title changed from Upgrade: Migrate pdf creation to a universal/php based solution to Upgrade: Implement pdf creation subsystem with user selectable engine
Though we allow/use both WKPDF (invoices) and dompdf (web pages/articles), the system should be transparent and it looks like mpdf http://www.mpdf1.com may be a better (php) solution. Possibly an 'engine' implementation like we do with database (and expMail to some extent) where we have a generic, high-level call structure.
-
dleffler October 26th, 2013 @ 10:31 AM
- State changed from open to resolved
- Assigned user set to dleffler
- Milestone set to 2.2.3
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Bug Tracker for Exponent CMS