We assign spaces to URLs in order to not display certain search results. Recently we found that this seems to break the "more results from" function in Aspseek.
In order to work around this we altered the following line in the templates.cpp file (line 1702): From: phref += sprintf(phref, "%s?q=%s%s%s", templ->self, m_query_url_escaped.c_str(), m_r_str, m_ul_str); To:phref += sprintf(phref, "%s?q=%s%s", templ->self, m_query_url_escaped.c_str(), m_r_str, m_ul_str); removing the 3rd %s from "%s?q=%s%s%s" Recompile and install, etc. This now allows "more results from" to work, but we don't know if we've broken anything else. All seems to be ok, but...... If anyone has the same problem perhaps this will be helpful, or if we've made a horrible error, maybe someone could clue us in. :-) --charlie -- ------------------------------------------------------------------------ Charlie Farinella, Appropriate Solutions, Inc. [EMAIL PROTECTED] 603-924-6079
