Код: Выделить всё
SQL ERROR [ mysql4 ]
Table 'anime.bb_forum_prune' doesn't exist [1146]
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 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, 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: 175
CALL: dbal->sql_error()
FILE: install/convertors/functions_phpbb20.php
LINE: 194
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: 326
CALL: install_convert->main()
FILE: install/index.php
LINE: 203
CALL: module->load()
viktor
PPK
Код: Выделить всё
SQL ERROR [ mysql4 ]
Unknown column 'posts.enable_bbcode' in 'field list' [1054]
SQL
SELECT posts.post_id, posts.topic_id, posts.forum_id, posts.poster_id, posts.poster_ip, posts.post_time, posts.enable_bbcode, posts.enable_html, posts.enable_smilies, posts.enable_sig, posts.post_username, posts_text.post_subject, posts.post_attachment, posts.post_edit_time, posts.post_edit_count, posts_text.post_text, posts_text.bbcode_uid AS old_bbcode_uid FROM bb_posts posts, bb_posts_text posts_text WHERE (posts.post_id = posts_text.post_id) ORDER BY posts.post_id LIMIT 2000
BACKTRACE
FILE: includes/db/mysql.php
LINE: 175
CALL: dbal->sql_error()
FILE: includes/db/mysql.php
LINE: 222
CALL: dbal_mysql->sql_query()
FILE: includes/db/dbal.php
LINE: 170
CALL: dbal_mysql->_sql_query_limit()
FILE: install/install_convert.php
LINE: 1233
CALL: dbal->sql_query_limit()
FILE: install/install_convert.php
LINE: 203
CALL: install_convert->convert_data()
FILE: install/index.php
LINE: 326
CALL: install_convert->main()
FILE: install/index.php
LINE: 203
CALL: module->load()
Код: Выделить всё
ALTER TABLE `bb_posts` ADD `enable_html` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0';
viktor
Код: Выделить всё
ALTER TABLE `bb_posts` ADD `enable_bbcode` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0';
PPK
Код: Выделить всё
SQL ERROR [ mysql4 ]
Unknown column 'user_allowavatar' in 'where clause' [1054]
SQL
SELECT user_id FROM bb_users WHERE user_allowavatar = 0 AND user_id > 0
BACKTRACE
FILE: includes/db/mysql.php
LINE: 175
CALL: dbal->sql_error()
FILE: install/convertors/functions_phpbb20.php
LINE: 954
CALL: dbal_mysql->sql_query()
FILE: install/install_convert.php(1654) : eval()'d code
LINE: 2
CALL: phpbb_convert_authentication()
FILE: install/install_convert.php
LINE: 1654
CALL: eval()
FILE: install/install_convert.php
LINE: 799
CALL: install_convert->jump()
FILE: install/install_convert.php
LINE: 203
CALL: install_convert->convert_data()
FILE: install/index.php
LINE: 326
CALL: install_convert->main()
FILE: install/index.php
LINE: 203
CALL: module->load()
viktor
Код: Выделить всё
Общая ошибка
SQL ERROR [ mysqli ]
Unknown column 'vote_desc.vote_text' in 'field list' [1054]
SQL
SELECT topics.topic_id, topics.forum_id, topics.topic_poster AS poster_id, topics.topic_attachment, topics.topic_title, topics.topic_time, topics.topic_views, topics.topic_replies, topics.topic_last_post_id, topics.topic_status, topics.topic_type, topics.topic_first_post_id, posts.post_time, vote_desc.vote_text, vote_desc.vote_start, vote_desc.vote_length FROM (bb_topics topics LEFT JOIN bb_vote_desc AS vote_desc ON topics.topic_id = vote_desc.topic_id AND topics.topic_vote = 1) LEFT JOIN bb_posts AS posts ON topics.topic_last_post_id = posts.post_id WHERE (topics.topic_moved_id = 0) ORDER BY topics.topic_id LIMIT 2000
Barbarossa178
vote_desc
создать поле vote_text
, там может быть много подобных ошибок, нужно создавать необходимые поля и всёPPK
Да, спасибо. Вчера разобрался) Только вот пароли юзеров не перенеслись(PPK писал(а):Barbarossa178, в таблицеvote_desc
создать полеvote_text
, там может быть много подобных ошибок, нужно создавать необходимые поля и всё
Barbarossa178
Должны были, значит что-то не так сделано былоBarbarossa178 писал(а):Только вот пароли юзеров не перенеслись
PPK