gasan
Код: Выделить всё
//@define('DEBUG', true);
//@define('DEBUG_EXTRA', true);
PPK
gasan
serrrios
Код: Выделить всё
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 5223: Undefined index: feed_overall
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 5225: Undefined index: feed_topics_new
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 5226: Undefined index: feed_topics_active
[phpBB Debug] PHP Notice: in file /viewtopic.php on line 1270: Undefined index: user_fromseedreq_count
[phpBB Debug] PHP Notice: in file /viewtopic.php on line 1271: Undefined index: user_toseedreq_count
[phpBB Debug] PHP Notice: in file /viewtopic.php on line 1748: Undefined index: user_fromseedreq
[phpBB Debug] PHP Notice: in file /viewtopic.php on line 1749: Undefined index: user_toseedreq
[phpBB Debug] PHP Notice: in file /tracker/include/memberlist_add1.php on line 74: Undefined index: user_fromseedreq_count
[phpBB Debug] PHP Notice: in file /tracker/include/memberlist_add1.php on line 75: Undefined index: user_toseedreq_count
roossasen
Код: Выделить всё
INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_new', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_active', '0');
Код: Выделить всё
ALTER TABLE `phpbb_users` ADD `user_fromseedreq_count` smallint(5) unsigned NOT NULL DEFAULT '0', ADD `user_toseedreq_count` smallint(5) unsigned NOT NULL DEFAULT '0';
PPK