PDA

View Full Version : Need help with robot_functions.php


wahinkto
12-06-2003, 11:30 AM
I keep geeting this error message and need some help.

SITE : http://www.wattstewart.us/
Exclude paths :
- @NONE@

Fatal error: Call to undefined function: is_executable() in C:\internet\cometc\search\admin\robot_functions.php on line 633

I am running Apache 2 and php4 on a windows xp machine.

Please help

Rolandks
12-06-2003, 11:49 AM
Do you have enable to parse "MSWORD", "MSEXCEL" or "PDF" in config.php ?

Config.php Line 98 ff:
define('PHPDIG_INDEX_MSWORD',false);
....

-Roland-

wahinkto
12-06-2003, 11:53 AM
No I dont have any of those enabled. Here is what they look like.

define('PHPDIG_INDEX_MSWORD',false);
define('PHPDIG_PARSE_MSWORD','/usr/local/bin/catdoc');
define('PHPDIG_OPTION_MSWORD','-s 8859-1');

define('PHPDIG_INDEX_PDF',false);
define('PHPDIG_PARSE_PDF','/usr/local/bin/pstotext');
define('PHPDIG_OPTION_PDF','-cork');

define('PHPDIG_INDEX_MSEXCEL',false);
define('PHPDIG_PARSE_MSEXCEL','/usr/local/bin/xls2csv');
define('PHPDIG_OPTION_MSEXCEL','');

Charter
12-06-2003, 11:54 AM
Hi. PhpDig 1.6.4+ has an option in the config file to bypass is_executable.

define('USE_IS_EXECUTABLE_COMMAND','1');

Just set that to zero. ;)

wahinkto
12-06-2003, 12:01 PM
Thanks that worked.