Hi guys, I have an issue using transformDocument.
I created a sample file the I kept on getting an error saying file not found.
Here's my code, any help will be greatly appreciated:
require_once(PHPDOCX_PATH . 'CreateDocx.inc');
$directory = $this->directory;
$tpl = FCPATH . 'fuel/application/views/presentation/tpl/kit-background.docx';
$docx = new CreateDocxFromTemplate($tpl);
$docx->replaceVariableByText(array('WEBSITE' => 'testing only!'), array('type' => 'block'));
$docx->createDocx('presentation_sheet');
$docx->enableCompatibilityMode();
$docx->transformDocument('presentation_sheet.docx', 'presentation_sheet.pdf');
The error says:
A PHP Error was encountered
Severity: Warning
Message: rename(./presentation_sheet.pdf,presentation_sheet.pdf): No such file or directory
Filename: classes/TransformDocAdvLibreOffice.inc
Line Number: 99