phpMyAdminResetting the View Count to Zero

Database
Previous topicNext topic
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6485
Joined: Jan 13th, '14, 20:45
    Windows 10 Chrome

Resetting the View Count to Zero

Post by dmzx »

Resetting the View Count to Zero

You need to edit the database to change topic views.

Using phpMyAdmin, run this query

Code: Select all

UPDATE phpbb_topics set topic_views = 0 WHERE topic_id = xx
Change phpbb_ if that is not your table prefix and change xx to the topic_id that you want to reset.

If you want to reset all topics, run this query

Code: Select all

UPDATE phpbb_topics set topic_views = 0

Previous topicNext topic