Guten Abend liebe Gemeinde
Ich habe ein Anliegen. Und zwar möchte ich mit meinem Forum auf einen anderen Server umziehen.
Doch wenn ich ein Datenbank-Backup mache, dann fehlt dort irgendwie die Hälfte.
Die Datenbank besitzt keine User und ich denke, auch alles was danach kommt.
Und ich bin mir nicht sicher, ob ich die Tabellen über den Punkt "Zusätzliche Tabellen" herunterladen kann. Ich habe dort schon etwas rumprobiert. Doch egal was ich eingebe, es passiert nichts.
Es wäre nett wenn Sie mir unter die Arme greifen könnten.
Mit freundlichen Grüßen
FX
Datenbank nicht vollständig
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Hallo (soviel Höflichkeit muss sein !),
dazu
Aber wenn Du dieses Snippet
einbaust kannst Du via ACP ein komplettes Backup der Datenbank starten. 
dazu
lautet die Antwort nein.FloppyX hat geschrieben:Könnte man das Problem, nicht über den Administrationsbereich beheben?

Code: Alles auswählen
##############################################################
## MOD Title: Backup All Tables
## MOD Author: DaveMiller < phpbb_mods@melgir.net > (David E. Miller) http://www.melgir.net/
## MOD Description: Backup all tables in database named with $table_prefix
## MOD Version: 1.0.1
##
## Installation Level: Easy
## Installation Time: 1 Minute
## Files To Edit: admin/admin_db_utilities.php
## Included Files: N/A
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes: This MOD is intended to include all tables which start
## with $table_prefix in the backup download. This is for any instances of
## phpBB2 which have added extra tables and want them included without needing
## to hardcode the table names in the code.
## It has only been tested against versions of MySQL.
##
##############################################################
## MOD History:
##
## 2005-10-30 - Version 1.0.0
## - created as MOD
## 2005-11-09 - Version 1.0.1
## - revised for submission
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
admin/admin_db_utilities.php
#
#-----[ FIND ]------------------------------------------
#
$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', 'confirm');
#
#-----[ AFTER, ADD ]------------------------------------------
#
//
// Backup All Tables START
//
$sql = "SHOW TABLES LIKE '{$table_prefix}%'";
$result = $db->sql_query($sql);
if ( !$result )
{
message_die(GENERAL_ERROR, "Error listing table names", "", __LINE__, __FILE__, $sql);
}
else
{
$tables = array();
$prefix_length = strlen($table_prefix);
while ( ($row=$db->sql_fetchrow($result)) )
{
// Not all sql engines return key named '0'
$keys = array_keys($row);
$key0 = is_array($keys) ? $keys[0] : 0;
$tbl = $row[$key0];
if ( strlen($tbl) > $prefix_length )
{
$tables[] = substr($tbl,$prefix_length);
}
}
}
//
// Backup All Tables END
//
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM

Viele Grüße - gloriosa 
Die einen schützen sich vor frischem Wind, während die anderen ihn nutzen.
Kein kostenloser MOD-Einbau usw. bzw. Support via PN, Email oder IRC !

Die einen schützen sich vor frischem Wind, während die anderen ihn nutzen.
Kein kostenloser MOD-Einbau usw. bzw. Support via PN, Email oder IRC !