[3.2] Tabellen, die verwendet werden
Forumsregeln
Bitte im Thementitel den Präfix deiner phpBB-Version angeben
Bitte im Thementitel den Präfix deiner phpBB-Version angeben
[3.2] Tabellen, die verwendet werden
Hallo zusammen,
ich hab vor längerer Zeit die softwaremäßige Betreung eines Forums übernommen. Leider ist der Admin, der es aufgebaut hat, nicht mehr verfügbar/greifbar.
In der CONFIG.PHP ist als Tabellenprefix "f" eingetragen. Ich finde aber beim Zugriff auf die Datenbank mit phpMyAdmin Tabellen mit anderen Prefixen (p, phpbb3, phpbb).
Da diese ja Einfluss auf die Datenbankgröße haben, ist meine Frage an die Experten: Kann ich diese Tabellen, die nicht mit dem Prefix "f" beginnen, problemlos löschen?
Ich vermute mal, dass diese aus Installationsversuchen (oder Upgrades/Neuinstallationen) übriggeblieben sind.
ich hab vor längerer Zeit die softwaremäßige Betreung eines Forums übernommen. Leider ist der Admin, der es aufgebaut hat, nicht mehr verfügbar/greifbar.
In der CONFIG.PHP ist als Tabellenprefix "f" eingetragen. Ich finde aber beim Zugriff auf die Datenbank mit phpMyAdmin Tabellen mit anderen Prefixen (p, phpbb3, phpbb).
Da diese ja Einfluss auf die Datenbankgröße haben, ist meine Frage an die Experten: Kann ich diese Tabellen, die nicht mit dem Prefix "f" beginnen, problemlos löschen?
Ich vermute mal, dass diese aus Installationsversuchen (oder Upgrades/Neuinstallationen) übriggeblieben sind.
T-Rex, der IT-Dinosaurier (retired)
Ich bin /root, ich darf das!!
Ich bin /root, ich darf das!!

Re: [3.2] Tabellen, die verwendet werden
Hi,
wenn der Präfix gar nicht auf taucht in der Tabelle, dann bist du in der falschen Datenbank und solltest erstmal nix löschen bist du weißt wohin es gehört.
Grüße
wenn der Präfix gar nicht auf taucht in der Tabelle, dann bist du in der falschen Datenbank und solltest erstmal nix löschen bist du weißt wohin es gehört.
Grüße
Re: [3.2] Tabellen, die verwendet werden
Wenn du wissen willst was genau für ein Präfix von dem Forum verwendet wird und du auch zugriff, auf das FTP Verzeichnis hast, dann schau dir die Datei config.php an. Dort steht der Präfix drinnen, der geladen wird. Es könnte zwar sei, das eine Extension eine, eigenen Präfix generiert, was ich aber eigentlich für unwahrscheinlich halte.
Du könntest (sofern du von der Datenbank ein Backup mit einem geeigneten Programm z. B. mysqldumper oder phpmyadmin gemacht hast) die Tabellen, die einen anderen Präfix haben löschen. Das solltest du aber versuchen auf einem Lokalen Rechner. Also du ziehst dir eine Kopie und machst dir auf deinem Rechner einen xampp Server auf (Software dafür findest du leicht über google) und gehst nach dieser Anleitung hier vor "Mit dem Board umziehen". Dort kannst du dann Probieren was passiert wenn du die Tabellen löschst.
Du könntest (sofern du von der Datenbank ein Backup mit einem geeigneten Programm z. B. mysqldumper oder phpmyadmin gemacht hast) die Tabellen, die einen anderen Präfix haben löschen. Das solltest du aber versuchen auf einem Lokalen Rechner. Also du ziehst dir eine Kopie und machst dir auf deinem Rechner einen xampp Server auf (Software dafür findest du leicht über google) und gehst nach dieser Anleitung hier vor "Mit dem Board umziehen". Dort kannst du dann Probieren was passiert wenn du die Tabellen löschst.
Re: [3.2] Tabellen, die verwendet werden
Hallo crizzo und chris1278:
In der config.php des forums ist als prefix "f" eingetragen:
Ich finde in der Datenbank z. B. folgende Tabellen:
fforums
fforums_access
Alle Tabellen die mit "f" beginnen müssten eigentlich die aktiven Tabellen des Forums sein.
Außerdem finde ich in dieser Datenbank noch Tabellen wie z. B.:
pforums
pforums_access
(Alle Tabellen, die es mit dem Prefix "f" gibt, existieren auch mit dem Prefix "p" bzw. mit phpbb3_
phpbb3_forums
phpbb3_forums_access
phpbb_forums
EDIT:
Ich hab eine komplette Liste der Tabellen aus der Datenbank als PDF-File, finde aber keine Möglichkeit den hier einzufügen.
In der config.php des forums ist als prefix "f" eingetragen:
Code: Alles auswählen
?php
// phpBB 3.1.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'phpbb\\db\\driver\\mysqli';
$dbhost = 'rdbms.strato.de';
$dbport = '';
$dbname = 'DB######';
$dbuser = '*******';
$dbpasswd = '******';
$table_prefix = 'f';
$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';
@define('PHPBB_INSTALLED', true);
// @define('PHPBB_DISPLAY_LOAD_TIME', true);
// @define('DEBUG', true);
// @define('DEBUG_CONTAINER', true);
Ich finde in der Datenbank z. B. folgende Tabellen:
fforums
fforums_access
Alle Tabellen die mit "f" beginnen müssten eigentlich die aktiven Tabellen des Forums sein.
Außerdem finde ich in dieser Datenbank noch Tabellen wie z. B.:
pforums
pforums_access
(Alle Tabellen, die es mit dem Prefix "f" gibt, existieren auch mit dem Prefix "p" bzw. mit phpbb3_
phpbb3_forums
phpbb3_forums_access
phpbb_forums
EDIT:
Ich hab eine komplette Liste der Tabellen aus der Datenbank als PDF-File, finde aber keine Möglichkeit den hier einzufügen.
T-Rex, der IT-Dinosaurier (retired)
Ich bin /root, ich darf das!!
Ich bin /root, ich darf das!!

Re: [3.2] Tabellen, die verwendet werden
Das will nicht funktionieren. Ich bekomme die folgende Fehlermeldung:
Kann es sein, dass PDF damit nicht geht?
EDIT:
Ich hab das PDF in ein reines Text-File konvertiert, aber auch damit bekomme ich die obige Fehlermeldungen.
Code: Alles auswählen
[phpBB Debug] PHP Warning: in file [ROOT]/ext/phpbbde/pastebin/controller/main.php on line 279: include_once(./includes/functions_upload.php): failed to open stream: No such file or directory
[phpBB Debug] PHP Warning: in file [ROOT]/ext/phpbbde/pastebin/controller/main.php on line 279: include_once(): Failed opening './includes/functions_upload.php' for inclusion (include_path='[ROOT]/vendor/phing/phing/classes:[ROOT]/vendor/phpunit/dbunit:[ROOT]/vendor/symfony/yaml:.:/usr/share/php')
EDIT:
Ich hab das PDF in ein reines Text-File konvertiert, aber auch damit bekomme ich die obige Fehlermeldungen.
T-Rex, der IT-Dinosaurier (retired)
Ich bin /root, ich darf das!!
Ich bin /root, ich darf das!!

Re: [3.2] Tabellen, die verwendet werden
Der Upload ist kaputt, kopiere den Inhalt in das Textfeld.
PS: Ich muss mal das Update einspielen.
Edit: Pastebin aktualisiert, es sollte nun der Upload gehen. Aber nur von Code-Dateien (keine PDF).
PS: Ich muss mal das Update einspielen.

Edit: Pastebin aktualisiert, es sollte nun der Upload gehen. Aber nur von Code-Dateien (keine PDF).
Re: [3.2] Tabellen, die verwendet werden
So dann kommt hier der Inhalt des Textfiles mit den 226 Tabellen:
Damit es lesbar bleibt, hab ich es in die Code-Anweisung verpackt.
Vielleicht noch als Info: im ACP bekomme ich nur die Tabellen mit dem Prefix "f" für den Backup zum auswählen.
Damit es lesbar bleibt, hab ich es in die Code-Anweisung verpackt.
Code: Alles auswählen
ForumsDB | STRATO phpMyAdmin 4.9.2
Tabelle Datensätze Typ Kollation Größe Überhang
facl_groups 552 MyISAM utf8_bin 26,5 KiB -
facl_options 129 MyISAM utf8_bin 11,6 KiB -
facl_roles 24 MyISAM utf8_bin 5,5 KiB -
facl_roles_data 435 MyISAM utf8_bin 16,4 KiB -
facl_users 0 MyISAM utf8_bin 1,0 KiB -
fattachments 3.423 MyISAM utf8_bin 574,7 KiB -
fbanlist 7.136 MyISAM utf8_bin 688,0 KiB -
fbbcodes 0 MyISAM utf8_bin 1,0 KiB -
fbookmarks 93 MyISAM utf8_bin 4,8 KiB -
fbots 51 MyISAM utf8_bin 5,4 KiB -
fconfig 380 MyISAM utf8_bin 34,8 KiB 36 B
fconfig_text 14 MyISAM utf8_bin 9,8 KiB -
fconfirm 2 MyISAM utf8_bin 4,1 KiB 968 B
fdisallow 3 MyISAM utf8_bin 2,1 KiB -
fdrafts 68 MyISAM utf8_bin 60,6 KiB -
fext 4 MyISAM utf8_bin 8,1 KiB -
fextensions 66 MyISAM utf8_bin 3,3 KiB -
fextension_groups 6 MyISAM utf8_bin 2,1 KiB -
fforums 180 MyISAM utf8_bin 50,5 KiB -
fforums_access 0 MyISAM utf8_bin 1,0 KiB -
fforums_track 5.448 MyISAM utf8_bin 150,1 KiB 312 B
fforums_watch 29 MyISAM utf8_bin 4,3 KiB -
fgroups 8 MyISAM utf8_bin 9,3 KiB -
ficons 10 MyISAM utf8_bin 3,3 KiB -
flang 3 MyISAM utf8_bin 3,2 KiB -
flog 4.772 MyISAM utf8_bin 833,6 KiB -
flogin_attempts 18 MyISAM utf8_bin 16,6 KiB 2,5 KiB
fmigrations 276 MyISAM utf8_bin 68,9 KiB -
fmoderator_cache 0 MyISAM utf8_bin 1,0 KiB -
fmodules 216 MyISAM utf8_bin 29,8 KiB -
fnotifications 3.544 MyISAM utf8_bin 1,3 MiB 11,8 KiB
fnotification_types 21 MyISAM utf8_bin 9,8 KiB -
foauth_accounts 0 MyISAM utf8_bin 4,0 KiB -
foauth_states 0 InnoDB utf8_bin 48,0 KiB -
foauth_tokens 0 MyISAM utf8_bin 4,0 KiB -
fpoll_options 147 MyISAM utf8_bin 13,0 KiB -
fpoll_votes 1.275 MyISAM utf8_bin 87,8 KiB -
fposts 225.202 MyISAM utf8_bin 234,5 MiB -
fprivmsgs 18.203 MyISAM utf8_bin 9,9 MiB -
fprivmsgs_folder 5.488 MyISAM utf8_bin 299,5 KiB -
fprivmsgs_rules 1 MyISAM utf8_bin 3,0 KiB -
fprivmsgs_to 19.530 MyISAM utf8_bin 1,1 MiB -
fprofile_fields 12 MyISAM utf8_bin 7,4 KiB -
fprofile_fields_data 5.882 MyISAM utf8_bin 262,5 KiB -
fprofile_fields_lang 0 MyISAM utf8_bin 1,0 KiB -
fprofile_lang 36 MyISAM utf8_bin 2,7 KiB -
franks 7 MyISAM utf8_bin 2,2 KiB -
freports 31 MyISAM utf8_bin 46,7 KiB -
freports_reasons 4 MyISAM utf8_bin 2,4 KiB -
fsearch_results 0 MyISAM utf8_bin 2,5 KiB 512 B
fsearch_wordlist 393.234 MyISAM utf8_bin 27,1 MiB -
fsearch_wordmatch 5.982.399 MyISAM utf8_bin 262,4 MiB -
fsessions 4.464 MyISAM utf8_bin 1,8 MiB 399,6 KiB
fsessions_keys 8.154 MyISAM utf8_bin 1,1 MiB -
fsitelist 0 MyISAM utf8_bin 1,0 KiB -
fsmilies 42 MyISAM utf8_bin 4,9 KiB -
fstyles 2 MyISAM utf8_bin 9,1 KiB -
fteampage 2 MyISAM utf8_bin 2,0 KiB -
fthanks 6.081 MyISAM utf8_bin 493,8 KiB -
ftopics 22.067 MyISAM utf8_bin 4,6 MiB 128 B
ftopics_posted 28.364 MyISAM utf8_bin 752,0 KiB -
ftopics_track 102.557 MyISAM utf8_bin 5,2 MiB 16 B
ftopics_watch 40.156 MyISAM utf8_bin 1,4 MiB -
fusers 7.590 MyISAM utf8_bin 3,5 MiB 168 B
fuser_group 8.973 MyISAM utf8_bin 388,7 KiB 30 B
fuser_notifications 24.473 MyISAM utf8_bin 2,6 MiB -
fwarnings 0 MyISAM utf8_bin 1,0 KiB -
fwords 2 MyISAM utf8_bin 2,1 KiB -
fzebra 86 MyISAM utf8_bin 4,9 KiB -
pacl_groups 1.294 MyISAM utf8_bin 57,7 KiB -
pacl_options 122 MyISAM utf8_bin 10,5 KiB -
pacl_roles 24 MyISAM utf8_bin 5,5 KiB -
pacl_roles_data 409 MyISAM utf8_bin 15,2 KiB -
pacl_users 0 MyISAM utf8_bin 1,0 KiB -
pattachments 0 MyISAM utf8_bin 1,0 KiB -
pbanlist 7.095 MyISAM utf8_bin 609,9 KiB -
pbbcodes 0 MyISAM utf8_bin 1,0 KiB -
pbookmarks 0 MyISAM utf8_bin 1,0 KiB -
pbots 51 MyISAM utf8_bin 5,3 KiB -
pconfig 297 MyISAM utf8_bin 31,9 KiB -
pconfig_text 4 MyISAM utf8_bin 8,1 KiB -
pconfirm 0 MyISAM utf8_bin 1,0 KiB -
pdisallow 3 MyISAM utf8_bin 2,1 KiB -
pdrafts 0 MyISAM utf8_bin 1,0 KiB -
pext 0 MyISAM utf8_bin 4,0 KiB -
pextensions 66 MyISAM utf8_bin 3,3 KiB -
pextension_groups 9 MyISAM utf8_bin 2,2 KiB -
pforums 156 MyISAM utf8_bin 36,2 KiB -
pforums_access 0 MyISAM utf8_bin 1,0 KiB -
pforums_track 0 MyISAM utf8_bin 1,0 KiB -
pforums_watch 0 MyISAM utf8_bin 1,0 KiB -
pgroups 8 MyISAM utf8_bin 9,3 KiB -
picons 10 MyISAM utf8_bin 3,3 KiB -
plang 3 MyISAM utf8_bin 3,2 KiB -
plog 3 MyISAM utf8_bin 7,5 KiB -
plogin_attempts 0 MyISAM utf8_bin 4,0 KiB -
pmigrations 170 MyISAM utf8_bin 41,4 KiB -
pmoderator_cache 0 MyISAM utf8_bin 1,0 KiB -
pmodules 206 MyISAM utf8_bin 28,7 KiB -
pnotifications 0 MyISAM utf8_bin 1,0 KiB -
pnotification_types 1 MyISAM utf8_bin 9,0 KiB -
poauth_accounts 0 MyISAM utf8_bin 4,0 KiB -
poauth_tokens 0 MyISAM utf8_bin 4,0 KiB -
ppoll_options 141 MyISAM utf8_bin 9,7 KiB -
ppoll_votes 1.174 MyISAM utf8_bin 76,6 KiB -
pposts 182.215 MyISAM utf8_bin 109,3 MiB -
pprivmsgs 16.446 MyISAM utf8_bin 8,7 MiB -
pprivmsgs_folder 5.495 MyISAM utf8_bin 294,2 KiB -
pprivmsgs_rules 0 MyISAM utf8_bin 1,0 KiB -
pprivmsgs_to 16.604 MyISAM utf8_bin 845,3 KiB -
pprofile_fields 13 MyISAM utf8_bin 7,4 KiB -
pprofile_fields_data 5.495 MyISAM utf8_bin 210,4 KiB -
pprofile_fields_lang 0 MyISAM utf8_bin 1,0 KiB -
pprofile_lang 39 MyISAM utf8_bin 2,8 KiB -
pranks 7 MyISAM utf8_bin 2,2 KiB -
preports 0 MyISAM utf8_bin 1,0 KiB -
preports_reasons 4 MyISAM utf8_bin 2,4 KiB -
psearch_results 0 MyISAM utf8_bin 1,0 KiB -
psearch_wordlist 253.208 MyISAM utf8_bin 16,1 MiB -
psearch_wordmatch 4.262.487 MyISAM utf8_bin 162,2 MiB -
psessions 2 MyISAM utf8_bin 5,4 KiB -
psessions_keys 2 MyISAM utf8_bin 3,1 KiB -
psitelist 0 MyISAM utf8_bin 1,0 KiB -
psmilies 42 MyISAM utf8_bin 4,9 KiB -
pstyles 1 MyISAM utf8_bin 9,1 KiB -
pteampage 2 MyISAM utf8_bin 2,0 KiB -
ptopics 17.472 MyISAM utf8_bin 3,0 MiB -
ptopics_posted 4.701 MyISAM utf8_bin 107,7 KiB -
ptopics_track 0 MyISAM utf8_bin 1,0 KiB -
ptopics_watch 34.753 MyISAM utf8_bin 1,1 MiB -
pusers 5.547 MyISAM utf8_bin 1,3 MiB -
puser_group 5.552 MyISAM utf8_bin 191,8 KiB -
puser_notifications 16.464 MyISAM utf8_bin 327,9 KiB -
pwarnings 0 MyISAM utf8_bin 1,0 KiB -
pwords 2 MyISAM utf8_bin 2,1 KiB -
pzebra 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_acl_groups 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_acl_options 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_acl_roles 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_acl_roles_data 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_acl_users 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_attachments 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_banlist 0 MyISAM utf8_bin 2,0 KiB -
phpbb3_bbcodes 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_bookmarks 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_bots 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_config 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_config_text 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_confirm 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_disallow 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_drafts 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_ext 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_extensions 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_extension_groups 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_forums 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_forums_access 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_forums_track 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_forums_watch 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_groups 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_icons 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_lang 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_log 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_login_attempts 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_migrations 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_moderator_cache 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_modules 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_notifications 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_notification_types 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_oauth_accounts 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_oauth_tokens 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_poll_options 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_poll_votes 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_posts 0 MyISAM utf8_bin 4,0 KiB -
phpbb3_privmsgs 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_privmsgs_folder 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_privmsgs_rules 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_privmsgs_to 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_profile_fields 0 MyISAM utf8_bin 2,0 KiB -
phpbb3_profile_fields_data 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_profile_fields_lang 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_profile_lang 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_ranks 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_reports 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_reports_reasons 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_search_results 0 MyISAM utf8_bin 1,0 KiB -
phpbb3_search_wordlist 0 MyISAM utf8_bin 4,0 KiB -
phpbb_acronyms 35 MyISAM latin1_german1_ci 3,4 KiB -
phpbb_auth_access 2 MyISAM latin1_german1_ci 3,0 KiB -
phpbb_banlist 7.095 MyISAM latin1_german1_ci 276,1 KiB -
phpbb_captcha_config 21 MyISAM latin1_german1_ci 4,5 KiB -
phpbb_categories 8 MyISAM latin1_german1_ci 3,3 KiB -
phpbb_chatbox 10 MyISAM latin1_german1_ci 2,9 KiB -
phpbb_chatbox_session 0 MyISAM latin1_german1_ci 1,0 KiB -
phpbb_config 89 MyISAM latin1_german1_ci 6,2 KiB -
phpbb_confirm 2 MyISAM latin1_german1_ci 2,1 KiB -
phpbb_disallow 3 MyISAM latin1_german1_ci 2,1 KiB -
phpbb_forums 148 MyISAM latin1_german1_ci 26,9 KiB -
phpbb_forum_prune 0 MyISAM latin1_german1_ci 1,0 KiB -
phpbb_groups 5.497 MyISAM latin1_german1_ci 241,9 KiB -
phpbb_map_mod_config 43 MyISAM latin1_german1_ci 5,1 KiB -
phpbb_map_mod_country 1 MyISAM latin1_german1_ci 2,0 KiB -
phpbb_map_mod_map 1 MyISAM latin1_german1_ci 2,1 KiB -
phpbb_map_mod_place 13.277 MyISAM latin1_german1_ci 610,7 KiB -
phpbb_map_mod_text 1 MyISAM latin1_german1_ci 2,1 KiB -
phpbb_map_mod_user 629 MyISAM latin1_german1_ci 16,4 KiB -
phpbb_posts 182.249 MyISAM latin1_german1_ci 15,1 MiB -
phpbb_posts_text 182.248 MyISAM latin1_german1_ci 78,8 MiB -
phpbb_privmsgs 16.458 MyISAM latin1_german1_ci 1,2 MiB -
phpbb_privmsgs_text 16.458 MyISAM latin1_german1_ci 6,4 MiB -
phpbb_ranks 7 MyISAM latin1_german1_ci 2,2 KiB -
phpbb_search_results 9 MyISAM latin1_german1_ci 7,7 KiB -
phpbb_search_wordlist 254.373 MyISAM latin1_german1_ci 13,9 MiB -
phpbb_search_wordmatch 4.456.226 MyISAM latin1_german1_ci 112,2 MiB -
phpbb_sessions 383 MyISAM latin1_german1_ci 72,7 KiB -
phpbb_sessions_keys 20.388 MyISAM latin1_german1_ci 2,4 MiB -
phpbb_smilies 42 MyISAM latin1_german1_ci 3,5 KiB -
phpbb_themes 1 MyISAM latin1_german1_ci 2,3 KiB -
phpbb_themes_name 1 MyISAM latin1_german1_ci 3,5 KiB -
phpbb_topics 17.475 MyISAM latin1_german1_ci 2,4 MiB -
phpbb_topics_watch 34.756 MyISAM latin1_german1_ci 1,1 MiB -
phpbb_users 5.496 MyISAM latin1_german1_ci 1,1 MiB -
phpbb_user_group 5.497 MyISAM latin1_german1_ci 143,9 KiB -
phpbb_vote_desc 37 MyISAM latin1_german1_ci 5,1 KiB -
phpbb_vote_results 141 MyISAM latin1_german1_ci 9,6 KiB -
phpbb_vote_voters 1.174 MyISAM latin1_german1_ci 56,2 KiB -
phpbb_words 2 MyISAM latin1_german1_ci 2,4 KiB -
226 Tabellen 16.989.457 InnoDB latin1_german1_ci 1,1 GiB 415,9 KiB
T-Rex, der IT-Dinosaurier (retired)
Ich bin /root, ich darf das!!
Ich bin /root, ich darf das!!

Re: [3.2] Tabellen, die verwendet werden
Japp, da sind wohl 4 verschiedene phpBB-Foren hinterlegt.
Jetzt kannst du natürlich alle außer "f" löschen oder, vorher mal ein phpBB parallel installieren und die anderen drei durchprobieren und schauen, was da überhaupt so drin ist.
Falls du es direkt löschst, würde ich vorher ein Backup machen und irgendwo sicher ablegen, falls du es später doch noch brauchst.
Jetzt kannst du natürlich alle außer "f" löschen oder, vorher mal ein phpBB parallel installieren und die anderen drei durchprobieren und schauen, was da überhaupt so drin ist.
Falls du es direkt löschst, würde ich vorher ein Backup machen und irgendwo sicher ablegen, falls du es später doch noch brauchst.

Re: [3.2] Tabellen, die verwendet werden
Danke, für das Feedback.
Ich hab eine Kopie des Forums auf meinem PC. Da kann ich mal ein 2. Forum anlegen und nachsehen, was in den anderen Tabellen drin ist.
Ich denke aber, dass die aus früheren Installationen hängengeblieben sind.
Ich hab eine Kopie des Forums auf meinem PC. Da kann ich mal ein 2. Forum anlegen und nachsehen, was in den anderen Tabellen drin ist.
Ich denke aber, dass die aus früheren Installationen hängengeblieben sind.
T-Rex, der IT-Dinosaurier (retired)
Ich bin /root, ich darf das!!
Ich bin /root, ich darf das!!
