I ran the following code but nothing happens (I can't find the output pdf file)
code:
$path = "http://mypath/test.docx";
$temp_dir = dirname(__FILE__)."/temp";
require_once '../phpdocx_pro_conv/classes/CreateDocx.inc';
$docx = new CreateDocx();
$docx->enableCompatibilityMode();
$docx->transformDocx($path,"$temp_dir/test.pdf", $temp_dir);
note:
I do not want to expose the path of the file but in my real code the url is valid