Questions tagged [livedocx]
15 questions
9
votes
5 answers
System.Security.SecurityException: Request for principal permission failed
Can anyone help point me in the right direction of how I might be able to fix this error?
System.Web.Services.Protocols.SoapException: Server was unable to process request.
---> System.Security.SecurityException: Request for principal…

brady.vitrano
- 2,256
- 2
- 16
- 26
3
votes
4 answers
How can LiveDocx in PHP be used to read .doc & .docx files and read text inside it and save to HTML?
Let's say we have a .doc & .docx files. I want to use LiveDocx in PHP to load the files, read it's content and strip the text from inside it. Then save it to an HTML string.
Can this be done?
I've searched the documentation, and it seams that…

Mohammed J. Razem
- 342
- 1
- 4
- 19
2
votes
1 answer
ZendService\LiveDocx returns zip file instead of docx
I'm using the ZendService\LiveDocx library, but when I run this on our stage server (Linux) and request the format to be docx, it returns me back a zip file rather than the actual document. The zip file consists of XML files describing the…

Adrian Walls
- 852
- 3
- 19
- 31
1
vote
1 answer
Is there a way to preserve HTML Formatting in LiveDocX?
I have a large amount of content stored in a database as XHTML. I need to be able to pull this formatted content into a simple LiveDocX template with the formatting (bold, italic, bulleted lists, etc) preserved.
Is this possible?
If so, can anybody…

Peter Schultheiss
- 51
- 1
- 3
1
vote
2 answers
Beginners php developer does using LiveDocx white Zend Framework is cpu resource eater?
im beginner in the php world i need to build option in web application that can convert well defined structures
into rtf/pdf from txt/html i found using this site search about LiveDocx php component that is dependent on Zend Framework
now im not…

user63898
- 29,839
- 85
- 272
- 514
1
vote
0 answers
File upload not working correctly with PDF Converter
Hi I am using LiveDocX to convert .Doc Files to .PDF files upon user upload.
However the files returned from LiveDocX are blank.
I seem to think this has somthing to do with the template path (file being uploaded through the form)
Below is the code…

user1095118
- 4,338
- 3
- 26
- 22
1
vote
1 answer
Can I convert a html page to pdf with htmltodoc and LiveDocx without creating a .doc on server?
I am trying to use the class htmltodoc in order to create a .pdf from an html page with :
http://www.phpkode.com/source/s/html-to-doc-classes/html-to-doc-classes/html_to_doc.inc.php
And with the library LiveDocx (with Zend)…

RomainHM
- 13
- 5
0
votes
2 answers
nodejs equivalent of PHPlivedocx?
I was wondering if there is a nodejs equivalent of PHPlivedocx. Is there any open-source alternative to read MS office docs (docx,pptx,xlsx) in nodejs (what about PHP?). I want to integrate it with a large scalable web app.
0
votes
1 answer
Private alternatives to LiveDocx
I've been looking for a solution to generate PDF from some data I have on a database. Currently I put it on an HTML and then print to PDF, but they asked me to save directly to PDF. These are documents that vary a lot in design, so before it was…

jdlcgarcia
- 183
- 11
0
votes
1 answer
Yii + ZendService/LiveDocx
I am trying to use the Zend Service Livedocx. I am using two models in my application - Submission and SubmissionFiles. I am saving the Submission data and the SubmissionFiles data with the Create action in the SubmissionController. I am trying to…

Ilia
- 17
- 5
0
votes
2 answers
Php LiveDocx library or another template based pdf creation lib
I need to generate gift vouchers from PHP code and was looking at PDF libraries to accomplish this. Stumbled upon LiveDocx http://www.livedocx.com/ which looks like an excellent service and then found http://www.phplivedocx.org/ which looks like the…

Hannes de Jager
- 2,903
- 6
- 37
- 57
0
votes
2 answers
file_put_contents permission denied + livedocx
I'm working with LiveDocx and zend framework to generate a word document from a template with values. This is what I do in my controller:
public function createwordAction(){
$this->_helper->layout->disableLayout();
…

nielsv
- 6,540
- 35
- 111
- 215
0
votes
1 answer
Zend LiveDocx - Cannot read local template from disk
I am trying to create a word document in my zend framework project but it isn't working!
This is my action code:
public function createwordAction(){
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
…

nielsv
- 6,540
- 35
- 111
- 215
0
votes
0 answers
Fill textboxes in MS Word using LiveDocX API and php
I'm using livedocs api 2.1 and fill mergefields with code like this which works fine
$soap->SetFieldValues(array ('fieldValues' => assocArrayToArrayOfArrayOfString($fieldValues)));
But how can I fill texboxes…

Vadim
- 1
- 1
0
votes
1 answer
Merge field for image not displaying in Word 2007 using livedocx and php
I'm trying to add a server side image uploaded from a user form to a Word document that gets generated using LiveDocx.
My word template looks like this.
«image:photo»
AKA
{ MERGEFIELD image:photo \* MERGEFORMAT }
My php looks like this.
$mailMerge…

PREEB
- 1,320
- 2
- 14
- 27