Hi,
I tried to convert docx to html file using libreoffice4.4 in command line execution. I’m using below code this gives nothing. Please give me some suggestions to fix this.
<?php
chdir('/usr/bin/');
$myCommand = "libreoffice4.4 --headless -convert-to html /home/username/public_html/docx/test.docx -outdir /home/username/public_html/docx/";
exec ($myCommand);
?>