Page 3 of 8

Re: Similar Topics

Posted: 28 Mar 2010, 00:46
by Chalong
Hi Stoker

Now I'm a little confused.

Can you please explain which files in the first post are edited ?
The lanuage file edits I can see at the first narrow and steely look. :)
Are there additional edits in the files viewtopic.php and viewtopic_body.html ?

Re: Similar Topics

Posted: 28 Mar 2010, 01:20
by cisco007
yes, there are replacement edits on the viewtopic_body.html, and language edits added to the viewtopic.php

Re: Similar Topics

Posted: 28 Mar 2010, 12:46
by Chalong
Thanks for reply cisco and thanks to Stoker for adaption.

So the german translation would be:

Open language/de/common.php
Find:

Code: Select all

?>
Before add:

Code: Select all

// BEGIN Similar Mod
$lang = array_merge($lang, array(
   'SIM_TOP'         => 'Ähnliche Themen',
   'SIM_REP'         => 'Antworten',
   'SIM_VIEWS'       => 'Zugriffe',
   'SIM_AUTH'        => 'Autor',
   'SIM_PIF'         => 'Beitrag im Forum:',
   'SIM_PBY'         => 'Geschrieben von:',
));
// END Similar Mod
Save as utf-8 without a BOM.

Re: Similar Topics

Posted: 31 Mar 2010, 10:44
by Fire-Fox
Missed the language update thanks :)

Re: Similar Topics

Posted: 07 Apr 2010, 17:25
by Nisok
First thing to do is making sure that the topics table is fulltext indexed. Execute this SQL in phpMyadmin:

Code: Select all

ALTER TABLE `phpbb_topics` ADD FULLTEXT (`topic_title`);
If we don't have installed phpmyadmin, what can we do?

Re: Similar Topics

Posted: 07 Apr 2010, 17:45
by Inner Circle
Download the Support Tool Kit from www.phpbb.com

Re: Similar Topics

Posted: 07 Apr 2010, 18:14
by Nisok
At ACP there is an index maker.
Will this do the job?

Re: Similar Topics

Posted: 07 Apr 2010, 18:59
by Inner Circle
Nisok » 07 Apr 2010, 18:14 wrote:At ACP there is an index maker.
Will this do the job?
Dunno what you mean?

Re: Similar Topics

Posted: 08 Apr 2010, 00:23
by Nisok
I found a solution.

Thank very much for your time

Re: Similar Topics

Posted: 09 Apr 2010, 21:31
by heredia21
ALTER TABLE `phpbb_topics` ADD FULLTEXT (`topic_title`);

How do we do this? I dont use phpmyadmin. Can we do this in ACP?