View Single Post
Old 07-13-2004, 07:57 PM   #9
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Hi. Looks like it might be related to this report. Search that webpage for "a57" (without quotes) and read from there. Also, this may be of interest too.

If these number/letter combos are in fact chunk encoding size markers, then they may be on their own lines so try the following to remove them.

In robot_functions.php, in the phpdigGetUrl function, find:
PHP Code:
else {
    
$lines[] = $answer;

and replace with the following:
PHP Code:
else {
    if (!
eregi("^[a-z0-9]{1,3}[[:space:]]*$",$answer)) {
        
$lines[] = $answer;
    }

__________________
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