`win
whuru
Выполни в БД TorrentPier'a SQL запрос:mike1808 писал(а):Когда я нажимаю конвертировать у меня выходит такая ошибкаНе поможете?Код: Выделить всё
Общая ошибка SQL ERROR [ mysql4 ] Table 'forum.bb_forum_prune' doesn't exist [1146] SQL SELECT f.forum_id, f.forum_name, f.cat_id, f.forum_desc, f.forum_status FROM bb_forums f LEFT JOIN bb_forum_prune fp ON f.forum_id = fp.forum_id GROUP BY f.forum_id, f.forum_name, f.cat_id, f.forum_desc, f.forum_status ORDER BY f.cat_id, f.forum_order BACKTRACE FILE: includes/db/mysql.php LINE: 174 CALL: dbal->sql_error() FILE: install/convertors/functions_phpbb20.php LINE: 193 CALL: dbal_mysql->sql_query() FILE: install/install_convert.php(1003) : eval()'d code LINE: 5 CALL: phpbb_insert_forums() FILE: install/install_convert.php LINE: 1003 CALL: eval() FILE: install/install_convert.php LINE: 203 CALL: install_convert->convert_data() FILE: install/index.php LINE: 405 CALL: install_convert->main() FILE: install/index.php LINE: 282 CALL: module->load()
Код: Выделить всё
CREATE TABLE IF NOT EXISTS `bb_forum_prune` (
`prune_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`forum_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`prune_days` smallint(5) unsigned NOT NULL DEFAULT '0',
`prune_freq` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`prune_id`),
KEY `forum_id` (`forum_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
whuru
+1 такая же проблема(( пробовал конвертер предложенный тут - не помогло(( помогитеlisik писал(а):Unknown encoding" и предлагает мне с собой связаться
nookie
buzb
Код: Выделить всё
INSERT INTO ppkBB3cker_base.phpbb_tracker_files (id, size) SELECT attach_id, size FROM tp_base.bb_bt_torrents;
UPDATE ppkBB3cker_base.phpbb_tracker_files, tp_base.bb_attachments_desc
SET ppkBB3cker_base.phpbb_tracker_files.filename = tp_base.bb_attachments_desc.real_filename
WHERE ppkBB3cker_base.phpbb_tracker_files.id = tp_base.bb_attachments_desc.attach_id;
UPDATE ppkBB3cker_base.phpbb_users, tp_base.bb_bt_users
SET ppkBB3cker_base.phpbb_users.user_passkey = tp_base.bb_bt_users.auth_key,
ppkBB3cker_base.phpbb_users.user_uploaded = tp_base.bb_bt_users.u_up_total,
ppkBB3cker_base.phpbb_users.user_downloaded = tp_base.bb_bt_users.u_down_total
WHERE ppkBB3cker_base.phpbb_users.user_id = tp_base.bb_bt_users.user_id;
INSERT INTO ppkBB3cker_base.phpbb_tracker_torrents (id, info_hash) SELECT attach_id, info_hash FROM tp_base.bb_bt_torrents;
UPDATE ppkBB3cker_base.phpbb_tracker_torrents, tp_base.bb_bt_torrents SET
ppkBB3cker_base.phpbb_tracker_torrents.post_msg_id = tp_base.bb_bt_torrents.post_id,
ppkBB3cker_base.phpbb_tracker_torrents.topic_id = tp_base.bb_bt_torrents.topic_id,
ppkBB3cker_base.phpbb_tracker_torrents.poster_id = tp_base.bb_bt_torrents.poster_id,
ppkBB3cker_base.phpbb_tracker_torrents.times_completed = tp_base.bb_bt_torrents.complete_count,
ppkBB3cker_base.phpbb_tracker_torrents.size = tp_base.bb_bt_torrents.size,
ppkBB3cker_base.phpbb_tracker_torrents.added = tp_base.bb_bt_torrents.reg_time
WHERE ppkBB3cker_base.phpbb_tracker_torrents.id = tp_base.bb_bt_torrents.attach_id;
insert into ppkBB3cker_base.phpbb_tracker_snatched(userid, torrent, port, seeder, uploaded, downloaded, to_go, last_action) select tp_base.bb_bt_tracker.user_id, tp_base.bb_bt_torrents.attach_id, tp_base.bb_bt_tracker.port, if(tp_base.bb_bt_tracker.seeder, 'yes', 'no'), tp_base.bb_bt_tracker.uploaded, tp_base.bb_bt_tracker.downloaded, tp_base.bb_bt_tracker.remain, tp_base.bb_bt_tracker.update_time from tp_base.bb_bt_tracker left join tp_base.bb_bt_torrents on tp_base.bb_bt_torrents.topic_id=tp_base.bb_bt_tracker.topic_id
PPK
Код: Выделить всё
SQL ERROR [ mysql4 ]
Unknown column 'f.prune_enable' in 'field list' [1054]
SQL
SELECT f.forum_id, f.forum_name, f.cat_id, f.forum_desc, f.forum_status, f.prune_enable, f.prune_next, fp.prune_days, fp.prune_freq FROM phpbb_forums f LEFT JOIN phpbb_forum_prune fp ON f.forum_id = fp.forum_id GROUP BY f.forum_id, f.forum_name, f.cat_id, f.forum_desc, f.forum_status, f.prune_enable, f.prune_next, f.forum_order, fp.prune_days, fp.prune_freq ORDER BY f.cat_id, f.forum_order
BACKTRACE
FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()
FILE: instal/convertors/functions_phpbb20.php
LINE: 193
CALL: dbal_mysql->sql_query()
FILE: instal/install_convert.php(1003) : eval()'d code
LINE: 5
CALL: phpbb_insert_forums()
FILE: instal/install_convert.php
LINE: 1003
CALL: eval()
FILE: instal/install_convert.php
LINE: 203
CALL: install_convert->convert_data()
FILE: instal/index.php
LINE: 409
CALL: install_convert->main()
FILE: instal/index.php
LINE: 286
CALL: module->load()
cruzzo
Код: Выделить всё
ALTER TABLE `bb_forums` ADD `prune_enable` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0',
ADD `prune_next` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0';
PPK
Код: Выделить всё
Общая ошибка
Unknown encoding:
Уведомите администратора конференции или вебмастера: ххх@ххх.ххх
AnimeFighter
PPK