PHP Classes

it's not safe....

Recommend this page to a friend!

      PHP Classes blog  >  New approach to gener...  >  All threads  >  it's not safe....  >  (Un) Subscribe thread alerts  
Subject:it's not safe....
Summary:this solution is not safe for futur.
Messages:3
Author:lc
Date:2009-10-08 20:05:38
Update:2013-09-23 03:49:01
 

  1. it's not safe....   Reply   Report abuse  
Picture of lc lc - 2009-10-08 20:08:11
Like igor Blanco say, this is juste a wrapper to a COMMERCIAL web service "LiveDocx" !

If LiveDocX stop his service, this (wrapper) library stop too.

Using FPDF (http://www.fpdf.org/) is more secure and Open Source !

If someone make a php zend Framework wrapper to this library, it's can be the real solution to produce (free) PDF !

Christophe

(Excuse my poor english)

  2. Re: it's not safe....   Reply   Report abuse  
Picture of Jonathan Maron Jonathan Maron - 2009-10-09 04:35:56 - In reply to message 2 from lc
Hello IC

First of all, the family of Zend_Service_LiveDocx components is released under the New BSD License:

phplivedocx.org/articles/phplivedoc ...

In order to operate, the components need access to a backend LiveDocx server.

> If LiveDocX stop his service, this (wrapper) library stop too.

The backend LiveDocx server is free to use. Period. We have no intention of stopping the service. In the case that you wish to generate 1000s of documents every day, it is possible to rent your own LiveDocx server or, in the case that you wish to create 10000s of documents per day, you can even purchase a LiveDocx license and install it in your own local network. But there is NOTHING forcing you to do this. The LiveDocx server embedded in Zend_Service_LiveDocx_MailMerge is free to use!

> Using FPDF (http://www.fpdf.org/) is more secure and Open Source !

FPDF offers what we refer to as the "programmatic" approach. This approach offers total control of the resulting PDF. However, it requires that the x and y coordinates of every line of text, every geometrical shape and graphic be set from program code. Not only is this an extremely time-consuming solution, but is also very brittle: Every time a graphical designer changes the layout of a document, a programmer must re-work his or her program code.

Zend_Service_LiveDocx_MailMerge offers an entirely new third approach, we refer to as the "template" approach. This entirely cross-platform approach relies on templates being created in a WYSIWYG environment, such as Microsoft Word, and then being populated with data from PHP. The resulting document can be saved not only to PDF, but also DOCX, DOC and RTF.

If there is anything else you would like to know about Zend_Service_LiveDocx, please do not hesitate to contact me.

Best regards

Jonathan

  3. Re: it's not safe....   Reply   Report abuse  
Picture of Don Bledsoe Don Bledsoe - 2009-10-10 20:02:01 - In reply to message 3 from Jonathan Maron
I am extremely interested in your approach as it makes sense for applications where non-progammers want to do extensive customization of documents. In particular, the hosting billing system I use uses the programmatic approach and it's a nightmare of trial-and-error to make even the simplest of changes to the format of the customer invoice. For many small web hosts, they only need to generate several hundred documents each month.

The prospect of simply designing the layout in Word and saving it in the application system to make invoices look more professional is more than just desirable. It's a necessity.

I would like to know ...

What is involved in running the LiveDocx server? For example, is it easy to add to an existing cPanel/WebHostManager hosting server for all users to have access to? Can it be installed on a per-domain basis like a library that the application simply calls? I suspect that the implementation of the backend will dictate the usefulness of the Zend_Service_LiveDocx for the average web user, so the easier it is to implement, the easier and faster it will be adopted.

I am very anxious to learn more!

Don