View Single Post
Old 01-11-2004, 03:47 PM   #2
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Hi. I'm not sure if this is what you are looking to do, but you could echo the URL of the page. In robot_functions.php find the following code and try adding the line indicated below.
PHP Code:
if (ereg("HTTP/[0-9.]+ (([0-9])[0-9]{2})"$answer,$regs)) {
    if (
$regs[2] == || $regs[2] == 3) {
      
$code $regs[2];
    }
    elseif (
$regs[1] >= 401 && $regs[1] <= 403) {
          
$status "UNAUTH";
          break;
    }
    else {
        
$status "NOFILE";
        echo 
"<br>No File: " $url "<br>"// add this line
        
break;
    }

__________________
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