coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 permissions => Topic started by: JohannM on May 04, 2007, 03:18:09 AM

Title: Error message for displayimage.php when restrickting users ?
Post by: JohannM on May 04, 2007, 03:18:09 AM
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
Title: Re: Error message for displayimage.php when restrickting users ?
Post by: Joachim Müller on May 04, 2007, 06:48:44 AM
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.