Page 1 of 1

Re: Limit on votes number??

Posted: 12 May 2010, 17:14
by Jan
Hi, this is bug in database, I will fix it for the next version.

But as this cannot be upgraded, it needs to be fixed in your database too:

In both tables:

#__phocagallery_votes_statistics
#__phocagallery_img_votes_statistics

the type of count column should be changed from tinyint to int:

`count` tinyint(11) NOT NULL default '0', - this is bug
`count` int(11) NOT NULL default '0', - this is correct

This can be changed e.g. with help of phpMyAdmin

Jan