hello, i am trying to open a docx template file but i get the error message: Error while trying to open the (base) template as a zip file
I am using codeigniter framework.How to solve this problem?
here is my code in controller:
public function createdocx()
{
$docx= new CreateDocxFromTemplate('../../upload_files/Template.docx');
$docx->replaceVariableByText(array('nameReport' => 'John Smith'));
$docx ->createDocx('helloword');
}
Template.docx is saved in the upload_files folder outside the controller directory .