If you want, an easy way is to run a SQL query (in PHPMyAdmin for example, or on the command line) to set the "total_value" and "total_votes" fields to 0.
Ex:
`UPDATE images SET total_value = 0, total_votes = 0;`
Replace `images` with your table name, or the album table name.
Comments
Cheers
Ex:
`UPDATE images SET total_value = 0, total_votes = 0;`
Replace `images` with your table name, or the album table name.