I successfully installed the image module this afternoon. I'm running Drupal 4.5.0. I created an image gallery and then logged out and attempted to access the image gallery as an anonymous user but it gave me the access denied page. I can't figure out how to give anonymous users access to view image galleries. Anyone know what I should do. My website is at http://www.technolispeaking.com if you need to see an example. BTW, thanks to everyone who has worked on Drupal, its an amazing piece of software.

Comments

bhertz’s picture

Had that problem too and found the answer somewhere in this forum. Edit image.module the function image_perm to look like this

function image_perm() {
return array("has personal image gallery", "manipulate images", "create images", "administer images", "access images");
}

The "access images" was originally missing in my case (4.5). After doing that, you can edit image access permissions for the various user roles.

sgwealti’s picture

Thanks much!