i have a an external member system by htaccess. I would like the non-members of the external member system to only see the thumbnails of the members' pics.
While members of hte external member system can see everything.
What can i do to accomplish this? ???
http://coppermine.sourceforge.net/faq.php#viewThumbnailsOnly
Would i have to edit (user id) to specify that only the htaccess members can see everything?
The htaccess is something like this.
AuthUserFile /dev/null
AuthGroupFile /dev/null
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://members.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.members.com [NC]
RewriteRule /* http://www.mysite.com/join.html [R,L]
You'd need to change USER_ID to $_SERVER['PHP_AUTH_USER']