Suche funzt nicht
Forumsregeln
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Suche funzt nicht
http://chefsache.bplaced.net/forum/index.php
egal was ich hier suche, es kommt nix.
anyone?
EDIT: suchindex ist und bleibt auch 0.
auf sql umstellen geht auch nicht: Die MySQL-Volltextsuche kann nur mit MyISAM-Tabellen genutzt werden.
egal was ich hier suche, es kommt nix.
anyone?
EDIT: suchindex ist und bleibt auch 0.
auf sql umstellen geht auch nicht: Die MySQL-Volltextsuche kann nur mit MyISAM-Tabellen genutzt werden.
- Mahony
- Ehemaliges Teammitglied
- Beiträge: 12256
- Registriert: 17.11.2005 22:33
- Wohnort: Ostfildern Kemnat
- Kontaktdaten:
Re: Suche funzt nicht
Hallo
Stell mal den Wert von Schwelle für häufig vorkommende Wörter auf 20% und erstelle danach den Suchindex neu.
Grüße: Mahony
Stell mal den Wert von Schwelle für häufig vorkommende Wörter auf 20% und erstelle danach den Suchindex neu.
Grüße: Mahony
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.
Re: Suche funzt nicht
Hi Mahony,
Insgesamt indizierte Wörter: 0
bleibt leer, auch mit 99% getestet.
Insgesamt indizierte Wörter: 0
bleibt leer, auch mit 99% getestet.
Re: Suche funzt nicht
Hallo
Welche Suchfunktion ist bei dir eingestellt?
Vielleicht hilft dir das hier weiter
http://forum.bplaced.net/viewtopic.php?f=5&t=16100
Welche Suchfunktion ist bei dir eingestellt?
Vielleicht hilft dir das hier weiter
http://forum.bplaced.net/viewtopic.php?f=5&t=16100
Re: Suche funzt nicht
kenn ich den thread, native ist bei mir drin weil ich nicht auf ISAM umstellen kann, ka warum.
hab nachgesehen die DB läuft wohl auf inno.
Darf ich alle Tabellen einfach so umstellen?
hab nachgesehen die DB läuft wohl auf inno.
Darf ich alle Tabellen einfach so umstellen?
Re: Suche funzt nicht
Lösche doch mal Fulltext native und klick bei Fulltext mysql auf index erstellen
- Mahony
- Ehemaliges Teammitglied
- Beiträge: 12256
- Registriert: 17.11.2005 22:33
- Wohnort: Ostfildern Kemnat
- Kontaktdaten:
Re: Suche funzt nicht
Hallo
Hast du mittels deinem Datenbank-Tool mal nachgesehen, welche Speicher-Engine verwendet wird?
MyISAM ist die Standard-Speicher-Engine, es sei denn, die Standardeinstellung wurde geändert.
Grüße: Mahony
Wie kommst du darauf, dass die Tabelle nicht die Standard-Speicher-Engine (MyISAM ) verwendet? Gab es eine Fehlermeldung (falls ja, welche)?js2002 hat geschrieben:auf sql umstellen geht auch nicht: Die MySQL-Volltextsuche kann nur mit MyISAM-Tabellen genutzt werden.
Hast du mittels deinem Datenbank-Tool mal nachgesehen, welche Speicher-Engine verwendet wird?
MyISAM ist die Standard-Speicher-Engine, es sei denn, die Standardeinstellung wurde geändert.
Grüße: Mahony
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.
Re: Suche funzt nicht
phpmyadmin zeigt mir bei den tabellen innoDB an.
Ich hab die 4 Search Tabellen schon auf isam geändert, nützt aber nix, fehler ist:
Information
Die MySQL-Volltextsuche kann nur mit MyISAM-Tabellen genutzt werden.
Jetzt wollte ich per script alle auf myisam ändern aber das script hat nur 62 tabellen in wirklichkeit sind es aber 65, grmllll, die finde ich ja nie in phpmyadmin...
^-- da fehlen halt 3, welche WTF!
AH: 3 portal tables fehlen, ich teste...TBC
Ich hab die 4 Search Tabellen schon auf isam geändert, nützt aber nix, fehler ist:
Information
Die MySQL-Volltextsuche kann nur mit MyISAM-Tabellen genutzt werden.
Jetzt wollte ich per script alle auf myisam ändern aber das script hat nur 62 tabellen in wirklichkeit sind es aber 65, grmllll, die finde ich ja nie in phpmyadmin...
Code: Alles auswählen
ALTER TABLE phpbb_acl_groups ENGINE=MyISAM;
ALTER TABLE phpbb_acl_options ENGINE=MyISAM;
ALTER TABLE phpbb_acl_roles ENGINE=MyISAM;
ALTER TABLE phpbb_acl_roles_data ENGINE=MyISAM;
ALTER TABLE phpbb_acl_users ENGINE=MyISAM;
ALTER TABLE phpbb_attachments ENGINE=MyISAM;
ALTER TABLE phpbb_banlist ENGINE=MyISAM;
ALTER TABLE phpbb_bbcodes ENGINE=MyISAM;
ALTER TABLE phpbb_bookmarks ENGINE=MyISAM;
ALTER TABLE phpbb_bots ENGINE=MyISAM;
ALTER TABLE phpbb_config ENGINE=MyISAM;
ALTER TABLE phpbb_confirm ENGINE=MyISAM;
ALTER TABLE phpbb_disallow ENGINE=MyISAM;
ALTER TABLE phpbb_drafts ENGINE=MyISAM;
ALTER TABLE phpbb_extensions ENGINE=MyISAM;
ALTER TABLE phpbb_extension_groups ENGINE=MyISAM;
ALTER TABLE phpbb_forums ENGINE=MyISAM;
ALTER TABLE phpbb_forums_access ENGINE=MyISAM;
ALTER TABLE phpbb_forums_track ENGINE=MyISAM;
ALTER TABLE phpbb_forums_watch ENGINE=MyISAM;
ALTER TABLE phpbb_groups ENGINE=MyISAM;
ALTER TABLE phpbb_icons ENGINE=MyISAM;
ALTER TABLE phpbb_lang ENGINE=MyISAM;
ALTER TABLE phpbb_log ENGINE=MyISAM;
ALTER TABLE phpbb_moderator_cache ENGINE=MyISAM;
ALTER TABLE phpbb_modules ENGINE=MyISAM;
ALTER TABLE phpbb_poll_options ENGINE=MyISAM;
ALTER TABLE phpbb_poll_votes ENGINE=MyISAM;
ALTER TABLE phpbb_posts ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs_folder ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs_rules ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs_to ENGINE=MyISAM;
ALTER TABLE phpbb_profile_fields ENGINE=MyISAM;
ALTER TABLE phpbb_profile_fields_data ENGINE=MyISAM;
ALTER TABLE phpbb_profile_fields_lang ENGINE=MyISAM;
ALTER TABLE phpbb_profile_lang ENGINE=MyISAM;
ALTER TABLE phpbb_ranks ENGINE=MyISAM;
ALTER TABLE phpbb_reports ENGINE=MyISAM;
ALTER TABLE phpbb_reports_reasons ENGINE=MyISAM;
ALTER TABLE phpbb_search_results ENGINE=MyISAM;
ALTER TABLE phpbb_search_wordlist ENGINE=MyISAM;
ALTER TABLE phpbb_search_wordmatch ENGINE=MyISAM;
ALTER TABLE phpbb_sessions ENGINE=MyISAM;
ALTER TABLE phpbb_sessions_keys ENGINE=MyISAM;
ALTER TABLE phpbb_sitelist ENGINE=MyISAM;
ALTER TABLE phpbb_smilies ENGINE=MyISAM;
ALTER TABLE phpbb_styles ENGINE=MyISAM;
ALTER TABLE phpbb_styles_imageset ENGINE=MyISAM;
ALTER TABLE phpbb_styles_imageset_data ENGINE=MyISAM;
ALTER TABLE phpbb_styles_template ENGINE=MyISAM;
ALTER TABLE phpbb_styles_template_data ENGINE=MyISAM;
ALTER TABLE phpbb_styles_theme ENGINE=MyISAM;
ALTER TABLE phpbb_topics ENGINE=MyISAM;
ALTER TABLE phpbb_topics_posted ENGINE=MyISAM;
ALTER TABLE phpbb_topics_track ENGINE=MyISAM;
ALTER TABLE phpbb_topics_watch ENGINE=MyISAM;
ALTER TABLE phpbb_users ENGINE=MyISAM;
ALTER TABLE phpbb_user_group ENGINE=MyISAM;
ALTER TABLE phpbb_warnings ENGINE=MyISAM;
ALTER TABLE phpbb_words ENGINE=MyISAM;
ALTER TABLE phpbb_zebra ENGINE=MyISAM;
AH: 3 portal tables fehlen, ich teste...TBC
Re: Suche funzt nicht
hat funktioniert.
jetzt hab ich irgendwo gesehen dann myisam keine foreign keys unterstützt.
Kennt sich da jem aus? Ist das "wichtig" zb für neue tabellen?
Hier alle Befehle:
ALTER TABLE phpbb_portal_config ENGINE=MyISAM;
ALTER TABLE phpbb_portal_modules ENGINE=MyISAM;
ALTER TABLE phpbb_login_attempts ENGINE=MyISAM;
Diese login attemps ist wohl neu und 2 sind vom portal
jetzt hab ich irgendwo gesehen dann myisam keine foreign keys unterstützt.
Kennt sich da jem aus? Ist das "wichtig" zb für neue tabellen?
Hier alle Befehle:
Code: Alles auswählen
ALTER TABLE phpbb_acl_groups ENGINE=MyISAM;
ALTER TABLE phpbb_acl_options ENGINE=MyISAM;
ALTER TABLE phpbb_acl_roles ENGINE=MyISAM;
ALTER TABLE phpbb_acl_roles_data ENGINE=MyISAM;
ALTER TABLE phpbb_acl_users ENGINE=MyISAM;
ALTER TABLE phpbb_attachments ENGINE=MyISAM;
ALTER TABLE phpbb_banlist ENGINE=MyISAM;
ALTER TABLE phpbb_bbcodes ENGINE=MyISAM;
ALTER TABLE phpbb_bookmarks ENGINE=MyISAM;
ALTER TABLE phpbb_bots ENGINE=MyISAM;
ALTER TABLE phpbb_config ENGINE=MyISAM;
ALTER TABLE phpbb_confirm ENGINE=MyISAM;
ALTER TABLE phpbb_disallow ENGINE=MyISAM;
ALTER TABLE phpbb_drafts ENGINE=MyISAM;
ALTER TABLE phpbb_extensions ENGINE=MyISAM;
ALTER TABLE phpbb_extension_groups ENGINE=MyISAM;
ALTER TABLE phpbb_forums ENGINE=MyISAM;
ALTER TABLE phpbb_forums_access ENGINE=MyISAM;
ALTER TABLE phpbb_forums_track ENGINE=MyISAM;
ALTER TABLE phpbb_forums_watch ENGINE=MyISAM;
ALTER TABLE phpbb_groups ENGINE=MyISAM;
ALTER TABLE phpbb_icons ENGINE=MyISAM;
ALTER TABLE phpbb_lang ENGINE=MyISAM;
ALTER TABLE phpbb_log ENGINE=MyISAM;
ALTER TABLE phpbb_moderator_cache ENGINE=MyISAM;
ALTER TABLE phpbb_modules ENGINE=MyISAM;
ALTER TABLE phpbb_poll_options ENGINE=MyISAM;
ALTER TABLE phpbb_poll_votes ENGINE=MyISAM;
ALTER TABLE phpbb_posts ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs_folder ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs_rules ENGINE=MyISAM;
ALTER TABLE phpbb_privmsgs_to ENGINE=MyISAM;
ALTER TABLE phpbb_profile_fields ENGINE=MyISAM;
ALTER TABLE phpbb_profile_fields_data ENGINE=MyISAM;
ALTER TABLE phpbb_profile_fields_lang ENGINE=MyISAM;
ALTER TABLE phpbb_profile_lang ENGINE=MyISAM;
ALTER TABLE phpbb_ranks ENGINE=MyISAM;
ALTER TABLE phpbb_reports ENGINE=MyISAM;
ALTER TABLE phpbb_reports_reasons ENGINE=MyISAM;
ALTER TABLE phpbb_search_results ENGINE=MyISAM;
ALTER TABLE phpbb_search_wordlist ENGINE=MyISAM;
ALTER TABLE phpbb_search_wordmatch ENGINE=MyISAM;
ALTER TABLE phpbb_sessions ENGINE=MyISAM;
ALTER TABLE phpbb_sessions_keys ENGINE=MyISAM;
ALTER TABLE phpbb_sitelist ENGINE=MyISAM;
ALTER TABLE phpbb_smilies ENGINE=MyISAM;
ALTER TABLE phpbb_styles ENGINE=MyISAM;
ALTER TABLE phpbb_styles_imageset ENGINE=MyISAM;
ALTER TABLE phpbb_styles_imageset_data ENGINE=MyISAM;
ALTER TABLE phpbb_styles_template ENGINE=MyISAM;
ALTER TABLE phpbb_styles_template_data ENGINE=MyISAM;
ALTER TABLE phpbb_styles_theme ENGINE=MyISAM;
ALTER TABLE phpbb_topics ENGINE=MyISAM;
ALTER TABLE phpbb_topics_posted ENGINE=MyISAM;
ALTER TABLE phpbb_topics_track ENGINE=MyISAM;
ALTER TABLE phpbb_topics_watch ENGINE=MyISAM;
ALTER TABLE phpbb_users ENGINE=MyISAM;
ALTER TABLE phpbb_user_group ENGINE=MyISAM;
ALTER TABLE phpbb_warnings ENGINE=MyISAM;
ALTER TABLE phpbb_words ENGINE=MyISAM;
ALTER TABLE phpbb_zebra ENGINE=MyISAM;
ALTER TABLE phpbb_portal_config ENGINE=MyISAM;
ALTER TABLE phpbb_portal_modules ENGINE=MyISAM;
ALTER TABLE phpbb_login_attempts ENGINE=MyISAM;
ALTER TABLE phpbb_portal_modules ENGINE=MyISAM;
ALTER TABLE phpbb_login_attempts ENGINE=MyISAM;
Diese login attemps ist wohl neu und 2 sind vom portal