2 thedreamer Jan 01, 2006 18:45

Here's what I added for 'dogpile.com':
}
+ else if(stristr($ref, 'dogpile.com/'))
+ {
+ $q = urldecode(substr($ref, strpos( $ref, 'search/web/')+11));
+ $pos_slash = strpos($q, '/');
+ $q = urldecode(substr($q, 0, $pos_slash));
+ if( strpos( $q, 'Ã' ) !== false )
+ { // Probability that the string is UTF-8 encoded is very high, that'll do for now...
+ //echo "[UTF-8 decoding]";
+ $q = utf8_decode( $q );
+ }
+ $qwords = explode( ' ', $q );
+ foreach( $qwords as $qw )
+ {
+ if( strlen( $qw ) > 30 ) $qw = substr( $qw, 0, 30 )."..."; // word too long, crop it
+ $kwout .= $qw.' ';
+ }
+ echo htmlentities($kwout);
+ return;
+ }
echo '[', T_('not a query - no params!'), ']';
The Dreamer
This is similar to a problem that has been bothering me, except it is the a9.com search engine.
So, I did something about it. First, I added 'a9.com' to conf/_stats.php.
Then I made this change to b2evocore/_functions_hitlogs.php
The Dreamer