Active Topics continue without showing: No suitable matches were found.
Tracing the used SQL sentence by phpbb 3.3.14 we get this:
SELECT t.topic_last_post_time, t.topic_id FROM phpbb_topics t WHERE t.topic_moved_id = 0 AND t.topic_last_post_time > 1736765997 AND ((t.forum_id NOT IN (1, 3, 32, 30, 5, 11, 4, 45, 2, 6, 33, 31, 8, 12, 7, 46, 20, 21, 23, 16, 18, 22, 17, 19, 38, 40, 41, 42, 43, 44) AND t.topic_visibility = 1) OR t.forum_id IN (24, 25, 26, 27, 28, 29)) AND t.forum_id NOT IN (1, 3, 32, 30, 5, 11, 4, 45, 2, 6, 33, 31, 8, 12, 7, 46, 20, 21, 23, 16, 18, 22, 17, 19, 38, 40, 41, 42, 43, 44) ORDER BY t.topic_last_post_time DESC
running it from phpmyadmin it returns zero results
If we modify that sentence to this one:
SELECT t.topic_last_post_time, t.topic_id FROM phpbb_topics t WHERE t.topic_moved_id = 0 AND t.topic_last_post_time > 1736765997 ORDER BY t.topic_last_post_time DESC
then we get 33 results
any hint what may be going on ?
Tracing the used SQL sentence by phpbb 3.3.14 we get this:
SELECT t.topic_last_post_time, t.topic_id FROM phpbb_topics t WHERE t.topic_moved_id = 0 AND t.topic_last_post_time > 1736765997 AND ((t.forum_id NOT IN (1, 3, 32, 30, 5, 11, 4, 45, 2, 6, 33, 31, 8, 12, 7, 46, 20, 21, 23, 16, 18, 22, 17, 19, 38, 40, 41, 42, 43, 44) AND t.topic_visibility = 1) OR t.forum_id IN (24, 25, 26, 27, 28, 29)) AND t.forum_id NOT IN (1, 3, 32, 30, 5, 11, 4, 45, 2, 6, 33, 31, 8, 12, 7, 46, 20, 21, 23, 16, 18, 22, 17, 19, 38, 40, 41, 42, 43, 44) ORDER BY t.topic_last_post_time DESC
running it from phpmyadmin it returns zero results
If we modify that sentence to this one:
SELECT t.topic_last_post_time, t.topic_id FROM phpbb_topics t WHERE t.topic_moved_id = 0 AND t.topic_last_post_time > 1736765997 ORDER BY t.topic_last_post_time DESC
then we get 33 results
any hint what may be going on ?
Statistics: Posted by Antonio Linares — Mon Jan 20, 2025 11:26 am