Random Views Below Image? Random Views Below Image?
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Random Views Below Image?

Started by irene, August 21, 2012, 07:31:06 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

irene

Hi,

I need random views below images in my gallery.
How do I do this?

For example each pic will show a number from 100 to 5000

I had it before on an older version and would like it again.

Thanks in advance.

Jeff Bailey

#1
Can you give a little more detail as to what you want to accomplish?

Do you just want any random number under thumbnails? or the view count of the image?

If you had it before do you have a copy of the code you can post here?
Thinking is the hardest work there is, which is probably the reason why so few engage in it. - Henry Ford


Jeff Bailey

This does not update the database. So it does not show in the file information section. It also does not update the album views. I don't have the time to search though all the files and find the correct places to up date but here is a solution that shows a random number of views under the thumbnails.

Find in include/functions.inc.php

            $views = ($mode == 'albums') ? $row['alb_hits'] : $row['hits'];

and replace with

            //$views = ($mode == 'albums') ? $row['alb_hits'] : $row['hits'];
            $views = mt_rand(300,1000);


It should be located in the function build_caption()
Thinking is the hardest work there is, which is probably the reason why so few engage in it. - Henry Ford

irene

Thanks a million. That's all I wanted!