Hi. Perhaps try the following.
In robot_functions.php is the phpdigReadRobotsTxt function.
In this function, replace:
PHP Code:
$user_agent = $regs[1];
with the following:
PHP Code:
if ($regs[1] == "*") {
$user_agent = "'$regs[1]'";
}
else {
$user_agent = $regs[1];
}