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
Posts: 8194
Moving to Random Block forum...
Posts: 3474
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 (
)