Help

jdrada

Joined: 2002-12-11
Posts: 3
Posted: Fri, 2003-05-23 21:47

What does this mean and how can I resolve it. Running Gallery Version 1.3 PostNuke: The Rogue Release (0.714)

Warning: rand() expects parameter 2 to be long, string given in /home/bouncefm/public_html/modules/Gallery/block-random.php on line 138
ERROR: requested index [] out of bounds [29]
Fatal error: Call to a member function on a non-object in /home/bouncefm/public_html/modules/Gallery/classes/Album.php on line 570

Thanks,

Javier Drada

 
alindeman
alindeman's picture

Joined: 2002-10-06
Posts: 8194
Posted: Fri, 2003-05-23 22:32

Moving to Random Block forum...

 
beckett
beckett's picture

Joined: 2002-08-16
Posts: 3474
Posted: Sat, 2003-05-24 08:13

block-random.php has an error in it.

Find this line:
$choose = rand(1, $count);
And change it to:
$choose = rand(1, (int) $count);

-Beckett (

)