Forum


Replies: 4   Views: 3649
Error while running test script - docx to pdf
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by cdalzell  · 19-05-2014 - 22:03

Fatal error: Class 'TransformDocAdv' not found in /home/XXXXX/XXXXX/libraries/PHPDocX/classes/CreateDocx.inc on line 759



running following script example:



require_once '../libraries/PHPDocX/classes/CreateDocx.inc';



$docx = new CreateDocx();



$docx->enableCompatibilityMode();



$text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .

    'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ' .

    'enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut' .

    'aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit ' .

    'in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ' .

    'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui ' .

    'officia deserunt mollit anim id est laborum.';



$paramsText = array(

    'b' => 'on',

    'font' => 'Arial'

);



$docx->addText($text, $paramsText);



$docx->createDocx('example_text');

$docx->transformDocx('example_text.docx', 'example_text.pdf');



Help please?



Thanks so much


Posted by jorgelj  · 20-05-2014 - 09:07

Hello,



The conversion plugin is only available in PRO+, Corporate and Enterprise versions. What version are you using?



Regards.


Posted by cdalzell  · 21-05-2014 - 07:15

Thanks for that; I'm just using the trial to determine if this calls will work as nneded.



I tried the simple generatorpdf but also got an error using:



require_once '../libraries/PHPDocX/classes/TransformDoc.inc';

require_once '../libraries/PHPDocX/classes/CreateDocx.inc';



$document = new TransformDoc();

$document->setStrFile('../output/agencies/example_text.docx');

$document->generatePDF();



-->Fatal error: Call to undefined method AutoLoader::loadPDF() in /home/montgo12/public_html/libraries/PHPDocX/classes/TransformDoc.inc on line 19



 



How can I test the pdf generator function?



 



Thanks



Colin



 


Posted by jorgelj  · 21-05-2014 - 09:37

Hello,



We'll check it, meanwhile you can use this method using the community version that includes the same method.



Regards.