<div dir="ltr">Thanks Aleksey! Works perfect!</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 27, 2016 at 5:06 AM, Aleksey Lim <span dir="ltr"><<a href="mailto:me@alsroot.su" target="_blank">me@alsroot.su</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">July 27 2016 6:32 AM, "Samuel Cantero" <<a href="mailto:scanterog@gmail.com">scanterog@gmail.com</a>> wrote:<br>
> Hello guys,<br>
><br>
> I just realized that the statistics for aslo is not working. I execute the daily zzz-aslo cron job<br>
> manually and I get the following error:<br>
><br>
> PHP Notice: MySQL Error 1690: BIGINT UNSIGNED value is out of range in<br>
> '(`activities`.`collections`.`upvotes` - `activities`.`collections`.`downvotes`)'<br>
<br>
</span>diff --git a/bin/maintenance.php b/bin/maintenance.php<br>
index 39ae95b..0a4c00d 100755<br>
--- a/bin/maintenance.php<br>
+++ b/bin/maintenance.php<br>
@@ -592,7 +592,7 @@ switch ($action) {<br>
<span class="">             UPDATE collections<br>
             SET rating=<br>
               IFNULL(<br>
</span>-                CAST(upvotes - downvotes AS SIGNED) * LN(upvotes + downvotes),<br>
+                (CAST(upvotes AS SIGNED) - CAST(downvotes AS SIGNED)) * LN(upvotes + downvotes),<br>
                 0)<br>
         ");<br>
         $affected_rows = mysql_affected_rows();<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Aleksey<br>
</font></span></blockquote></div><br></div>