View Single Post
Old 04-11-2004, 03:27 PM   #10
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
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";
}
?>
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote