View Single Post
Old 12-15-2004, 06:27 AM   #2
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
1) Search depth to large number, links per to zero, LIMIT_TO_DIRECTORY to false.

2) In config.php find:
PHP Code:
"&auml" => "ä"
And afterwards add:
PHP Code:
"&Auml" => "Ä",
"&Euml" => "Ë",
"&Iuml" => "Ï",
"&Uuml" => "Ü"
In robot_functions.php find:
PHP Code:
//tries to replace htmlentities by ascii equivalent
foreach ($spec as $entity => $char) {
      
$text eregi_replace ($entity."[;]?",$char,$text);
      
$title eregi_replace ($entity."[;]?",$char,$title);

And beforehand add:
PHP Code:
//tries to replace htmlentities by ascii equivalent
foreach ($spec as $entity => $char) {
      
$text ereg_replace ($entity."[;]?",$char,$text);
      
$title ereg_replace ($entity."[;]?",$char,$title);

__________________
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