Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.
Please keep in mind:
Support response
Support checklist
When logged in, the random button only shows images uploaded by me, not any other users.
When logged out sometimes the random buttons just takes me to the homepage and decides not to work altogether.
That is because random mode needs like 5 images or so at least to work properly.
Are you sure? In the demo I'm able to see any public picture using the random mode.
I think I figured it out, it's not showing photos if they are in an album... even if the album is public.
// Don't show NSFW in random mode
if(!$handler::getCond('show_nsfw_in_random_mode')) {
if($logged_user) {
$query .= 'AND ('.$tables['images'].'.image_nsfw = 0 OR '.$tables['images'].'.image_user_id = '.$logged_user['id'].') ';
} else {
$query .= 'AND '.$tables['images'].'.image_nsfw = 0 ';
}
}