Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2189

[3.3.x] Support Forum • Re: Out of range Value fo column 'topic_views'

$
0
0
That is by design.
The topic_views field is mediumint(8) UNSIGNED for MySQL which means the maximum value of 16777215 is allowed. If a topic views count goes beyond this value, the MySQL error occurs.
There're 2 ways to workaround that: one is to manually change the column type to allow higher values (f.e. int(10)) and another is to manually drop the value of topic_views column for the topic down to f.e. 0.

Statistics: Posted by rxu — Thu Jan 30, 2025 3:08 am



Viewing all articles
Browse latest Browse all 2189

Trending Articles