Hi. All of the following are coming up blank, likely meaning false, so the external binary isn't applied to the file.
Does parse pdf exist:
Does parse msword exist:
Does parse msexcel exist:
Try the following script, and keep changing the $filename variable until you get a 'file exists' for each binary, and use those paths. If the paths that you are using are actually correct, the blank results may be coming from cache, so running the script below will also clear that.
PHP Code:
<?php
$filename = "C:\\\\catdoc\\\\catdoc";
clearstatcache();
if (file_exists($filename)) {
echo "file exists";
} else {
echo "try again";
}
?>