Having issues with docx2txt, I have changed to linux hosting and now when I use the following code it outputs the file on screen (like an echo) rather than declaring it in my $file_original var.
require_once $ph . 'common/phpdocx/classes/CreateDocx.inc';
$docx = new CreateDocx();
$docx->docx2txt($document_path, $output);
$file_original = file_get_contents($output);
This code ahs worked on both a previous linux and windows server.
Could this be an issue with my new server or just that a file hasn't uploaded correctly?
Thanks