ashubgar نوشته:
خوب پس حالا که آسونه راهنماي نصب mysqldumper , و همين مد رو فقط از طريق FTP براي phpbb3 براي من ياد بدين. چون هاست من webmin هستش منم از هيچي سر در نميارم
باز هم ميگم من به جز FTP به جاي ديگه دسترسي ندارم
کودوم پوشه آپلود کنم و چجوري نصبش کنم
اين چيزايي هم که شما ميگين من بلد نيستم براي همين براي من خيلي سخته
الوعده وفا
من هنوز bb3 رو روی سایتم نصب نکردم ولی full back up رو برات توضیح میدم:
code :
#-----[ OPEN ]------------------------------------------
#
admin/admin_db_utilities.php
یعنی از پوشه root به فولدر admin رفته و فایل admin_db_utilities.php رو باز کنید.
سپس:
code :
#-----[ 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');
#
#-----[ REPLACE WITH ]------------------------------------------
#
$result = mysql_list_tables($dbname);
$i = 0;
while ($i < mysql_num_rows ($result)) {
$tables[$i] = mysql_tablename ($result, $i);
$i++;
}
یعنی عبارت
code :
$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');
رو پیدا کنید و با عبارت زیر جایگزین کنید:
code :
$result = mysql_list_tables($dbname);
$i = 0;
while ($i < mysql_num_rows ($result)) {
$tables[$i] = mysql_tablename ($result, $i);
$i++;
}
و داریم:
code :
#-----[ FIND ]------------------------------------------
#
if($backup_type != 'data')
{
echo "#\n# TABLE: " . $table_prefix . $table_name . "\n#\n";
echo $table_def_function($table_prefix . $table_name, "\n") . "\n";
}
if($backup_type != 'structure')
{
$table_content_function($table_prefix . $table_name, "output_table_content");
}
}
#
#-----[ REPLACE WITH ]------------------------------------------
#
if($backup_type != 'data')
{
echo "#\n# TABLE: $table_name \n#\n";
echo $table_def_function($table_name, "\n") . "\n";
}
if($backup_type != 'structure')
{
$table_content_function($table_name, "output_table_content");
}
}
یعنی عبارت زیر را پیدا کنید:
code :
if($backup_type != 'data')
{
echo "#\n# TABLE: " . $table_prefix . $table_name . "\n#\n";
echo $table_def_function($table_prefix . $table_name, "\n") . "\n";
}
if($backup_type != 'structure')
{
$table_content_function($table_prefix . $table_name, "output_table_content");
}
}
و با عبارت زیر جایگزین کنید:
code :
if($backup_type != 'data')
{
echo "#\n# TABLE: $table_name \n#\n";
echo $table_def_function($table_name, "\n") . "\n";
}
if($backup_type != 'structure')
{
$table_content_function($table_name, "output_table_content");
}
}
و در اخر:
code :
#-----[ SAVE & CLOSE ALL FILES ]--------------------------
یعنی فایل را بسته و تنظیمات رو save کنید.
همین-کاری داشت؟
در ضمن همه با ftp کار می کنند فرقی نداره که.