tina

|
Posted:
Fri Aug 25, 2006 9:05 pm |
|
Thanking you for that.
I had to edit three files in the end, posting.php, search.php and then include/functions_search.php. There is a small error in the code in that link so I thought I would post my edits here with correct code.
modules/Forums/Posting.php
Find
Code:$topic_type = ( $topic_type != $post_data['topic_type'] && !$is_auth['auth_sticky'] && !$is_auth['auth_announce'] ) ? $post_data['topic_type'] : $topic_type;
submit_post($mode, $post_data, $return_message, $return_meta, $forum_id, $topic_id, $post_id, $poll_id, $topic_type, $bbcode_on, $html_on, $smilies_on, $attach_sig, $bbcode_uid, str_replace("\'", "''", $username), str_replace("\'", "''", $subject), str_replace("\'", "''", $message), str_replace("\'", "''", $poll_title), $poll_options, $poll_length);
|
Replace
Code:$topic_type = ( $topic_type != $post_data['topic_type'] && !$is_auth['auth_sticky'] && !$is_auth['auth_announce'] ) ? $post_data['topic_type'] : $topic_type;
$temp1=str_replace("\'", "''", $username);
$temp2= str_replace("\'", "''", $subject);
$temp3=str_replace("\'", "''", $message);
$temp4= str_replace("\'", "''", $poll_title);
submit_post($mode, $post_data, $return_message, $return_meta, $forum_id, $topic_id, $post_id, $poll_id, $topic_type, $bbcode_on, $html_on, $smilies_on, $attach_sig, $bbcode_uid, $temp1, $temp2, $temp3, $temp4, $poll_options, $poll_length);
|
Then in modules/Forums/search.php
Find
Code:$split_search = ( !strstr($multibyte_charset, $lang['ENCODING']) ) ? split_words(clean_words('search', stripslashes($search_keywords), $stopword_array, $synonym_array), 'search') : split(' ', $search_keywords);
|
Replace
Code:if (!strstr($multibyte_charset, $lang['ENCODING']))
{
$temp1 = stripslashes($search_keywords);
$temp2 = clean_words('search', $temp1, $stopword_array, $synonym_array); $split_search = split_words($temp2, 'search');
}
else
$split_search = split(' ', $search_keywords);
|
Then in includes/functions_search.php
Find
Code: $search_raw_words = array();
$search_raw_words['text'] = split_words(clean_words('post', $post_text, $stopword_array, $synonym_array));
$search_raw_words['title'] = split_words(clean_words('post', $post_title, $stopword_array, $synonym_array));
@set_time_limit(0);
|
Replace with
Code:$search_raw_words = array();
$tempA= clean_words('post', $post_text, $stopword_array, $synonym_array);
$search_raw_words['text'] = split_words($tempA);
$tempB= clean_words('post', $post_title, $stopword_array, $synonym_array);
$search_raw_words['title'] = split_words($tempB);
@set_time_limit(0);
|
I also read somewhere that the bbtonuke upgrades (I think it was 20.18) fixes this as well. |
|
|
tina

|
Posted:
Wed Nov 08, 2006 4:41 am |
|
I decided to "compare" the files and when comparing includes\functions_search with the new upgraded version and the version I had been running I discovered this difference:
Compare: (<)C:\Documents and Settings\Administrator\Desktop\Document.txt (24197 bytes)
with: (>)C:\Documents and Settings\Administrator\Local Settings\Temp\DSP7B.php (23628 bytes)
Code:155,158c155,157
< $tempA= clean_words('post', $post_text, $stopword_array, $synonym_array);
< $search_raw_words['text'] = split_words($tempA);
< $tempB= clean_words('post', $post_title, $stopword_array, $synonym_array);
< $search_raw_words['title'] = split_words($tempB);
---
> $search_raw_words['text'] = split_words(clean_words('post', $post_text, $stopword_array, $synonym_array));
> $search_raw_words['title'] = split_words(clean_words('post', $post_title, $stopword_array, $synonym_array));
> @set_time_limit(0);
|
So I reinstalled my old functions_search.php since I had manually made these changes previously and it now works. |
|
|