View Single Post
Old 10-24-2003, 12:47 AM   #2
Rolandks
Purple Mole
 
Rolandks's Avatar
 
Join Date: Sep 2003
Location: Kassel, Germany
Posts: 119
It is a problem with with > PHP 4.3.2 . The following must work as possible solution: See this thread here:

Change ONLY this in robot_functions.php Line 160:
Code:
//replace any group of blank characters by an unique space
$text = ereg_replace("[[:blank:]]+"," ",strip_tags($text));
to
Code:
//replace any group of blank characters by
$text = preg_replace('/<.*>/U', '', $text);
It works with PHP 4.3.2 and PhpDig 1.6.2.
NO html-comments are indexing !


-Roland-
Rolandks is offline   Reply With Quote