Seite 1 von 1

mit DB Maintenance auch die Shout Tabelle optimieren

Verfasst: 18.09.2005 01:24
von felixx
Hallo,

ich habe bei mir den DB Maintenance Mod eingebaut.
Läuft perfekt.

Aber was muß ich ändern damit auch die Tabelle "phpbb_shout" bei dem Vorgang "Optimiere die Datenbank" optimiert wird?

Danke für eure Hilfe! 8)

Verfasst: 18.09.2005 10:17
von Mario Siebert
includes/functions_dbmtnc.php

[suchen]

Code: Alles auswählen

$tables = array('auth_access', 'banlist', 'categories', 'config', 'disallow', 'forums', 'forum_prune', 'groups', 'posts', 'posts_text', 'privmsgs', 'privmsgs_text', 'ranks', 'search_results', 'search_wordlist', 'search_wordmatch', 'sessions', 'smilies', 'themes', 'themes_name', 'topics', 'topics_watch', 'user_group', 'users', 'vote_desc', 'vote_results', 'vote_voters', 'words');
[ersetzen durch]

Code: Alles auswählen

$tables = array('auth_access', 'banlist', 'categories', 'config', 'disallow', 'forums', 'forum_prune', 'groups', 'posts', 'posts_text', 'privmsgs', 'privmsgs_text', 'ranks', 'search_results', 'search_wordlist', 'search_wordmatch', 'sessions', 'shout', 'smilies', 'themes', 'themes_name', 'topics', 'topics_watch', 'user_group', 'users', 'vote_desc', 'vote_results', 'vote_voters', 'words');
Grüße Mario

Verfasst: 18.09.2005 11:12
von felixx
Hallo Mario,

Danke Dir!

Und mit den Album Mod von Smartor müsste das ja dann so aussehen

Code: Alles auswählen

$tables = array('album', 'album_cat', 'album_comment', 'album_config', 'album_rate', 'auth_access', 'banlist', 'categories', 'config', 'disallow', 'forums', 'forum_prune', 'groups', 'posts', 'posts_text', 'privmsgs', 'privmsgs_text', 'ranks', 'search_results', 'search_wordlist', 'search_wordmatch', 'sessions', 'shout', 'smilies', 'themes', 'themes_name', 'topics', 'topics_watch', 'user_group', 'users', 'vote_desc', 'vote_results', 'vote_voters', 'words');
korrekt?

Verfasst: 18.09.2005 11:14
von Mario Siebert
felixx hat geschrieben: Und mit den Album Mod von Smartor müsste das ja dann so aussehen
?
jepp :wink:

Grüße Mario

Verfasst: 18.09.2005 11:15
von felixx
Danke für Deine Hilfe! 8)