I was trying to restrict pic view for guests. They should only be able to see the thumbnail, but not the actual picture. This is the solution for it:
Edit displayimage.php and add
if (!USER_ID) cpg_die(ERROR, 'You need to register to access this page', __FILE__, __LINE__);
just before
/************************************************** ************************
* Local functions definition
************************************************** ************************/
http://coppermine.sourceforge.net/fa...ThumbnailsOnly
The problem is that it allows users who haven' t confirmed their email address yet to see the full size picture.
How do I disable full size view for unconfirmed users, too?