Hi there
I'm still stupid in php, but when you Enable (tick) "Allow unlogged users (guest or anonymous) access", this script below prevent the visitors to view or go to the intermediate (displayimage.php) page.
if (!USER_ID && $CONFIG['allow_unlogged_access'] == 0) {
$redirect = $redirect . "login.php";
header("Location: $redirect");
exit();
}
QUESTION:
How do I add an error page that will redirect them from the thumbnail page to an "Error message: saying they need to be registered in
order to view photo's, and then again redirecting them to the login page ?
Please help
Thanx
Something likeif (!USER_ID && $CONFIG['allow_unlogged_access'] == 0) {
cpg_die('You need to be logged in to access this page.');
}
should do the trick.