EnglishPages: 1
Hey,
I started to use piwigo, which i find the best gallery available, and have a question about the guest user.
In my setup i installed the plugin GThumb+. When a guest clicks on an album he sees the overview of all the pictures in it. That is also the only thing he should be able to view. So when he clicks then on one of the pictures he should get the login page.
Is it possible to restrict guest access to only thumbnails?
Best regards,
Peter
Last edited by heras (2011-12-14 11:38:59)
Offline
Open LocalFiles Editor plugin, go to 5th tab (personal plugin) and insert this code:
add_event_handler('loc_begin_picture', 'personal_guest_picture_access');
function personal_guest_picture_access()
{
if (is_a_guest()) access_denied();
}Then, activate the personal plugin on plugins page.
Offline
P@t wrote:
Then, activate the personal plugin on plugins page.
working.
and now, please, with the possibility to configure it on album level too, like :
"if user guest and album id {array} show only thumbs ..." (i´m not a programmer!) ;-}
and with a nice usergui :-) :-)
Offline
Pages: 1