PDA

View Full Version : Filename as searchtext


syrix
02-24-2005, 12:15 AM
Hey,

i want to search for filenames. the results have to be linked on this filenames. is this possible?

Charter
02-26-2005, 07:59 PM
At the start of the phpdigIndexFile function in robot_functions.php add:

if (!isset($nbre_mots[$file])) {
$nbre_mots[$file] = 1;
}

That should add the filename part of the indexed pages to the PhpDig engine.

Note that you may want to add some code inside the if statement to format the filename part to your preference.