View Single Post
Old 11-09-2007, 07:10 AM   #2
Lord_Goran
Green Mole
 
Join Date: Nov 2007
Posts: 2
I sent out several calls for help and one of my friends suggested the following:

In the robot_functions.php page change the following from:
settype($pu['path'],'string');
settype($pu['query'],'string');
settype($pu['user'],'string');
settype($pu['pass'],'string');
settype($pu['port'],'integer');
if ($pu['port'] == 0 || $pu['port'] == 80) {
$pu['port'] = 0;
}

To this:

settype($pu['path'],'string');
settype($pu['query'],'string');
settype($pu['user'],'string');
settype($pu['pass'],'string');
settype($pu['port'],'integer');
if ($pu['port'] == '0' || $pu['port'] == '80') {
$pu['port'] = '0';
}

Wrapping the numeric values for the port with a single quote seems to have fixed the problem. It's now indexing and working just fine.
Lord_Goran is offline   Reply With Quote