Greetings.. I picked up exUserFolder because it looked like it contained just about everything I was looking for for my site, and it all seems to work very nicely, except:
I want to set up my site so that visitors can create (and to some extent manage) their own accounts, which the "Member Source" functionality seems to be precisely designed for. I have set things up so that users can go to the Signup form to create an account, and it works fine if I do it myself, but if anyone attempts to do this when they are not logged in (anonymous), when the form is submitted they are confronted with an error message stating:
Error Type: Unauthorized
Error Value: You are not allowed to access manage_page_header in this context
From what I've been able to determine this has something to do with the code's use of MessageDialog to display responses (if I comment out these calls it seems to fix the error, but having no user feedback really isn't an appropriate solution), but I'm having enough trouble following the Zope code (and confess I really don't understand Zope permissions as well as I'd like to) so I'm kinda stumped from there.
Does anybody have any suggestions as to how I can get things to work so that anonymous users can create an account for themselves without site-admin intervention?
Thankx..
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Greetings.. I picked up exUserFolder because it looked like it contained just about everything I was looking for for my site, and it all seems to work very nicely, except:
I want to set up my site so that visitors can create (and to some extent manage) their own accounts, which the "Member Source" functionality seems to be precisely designed for. I have set things up so that users can go to the Signup form to create an account, and it works fine if I do it myself, but if anyone attempts to do this when they are not logged in (anonymous), when the form is submitted they are confronted with an error message stating:
Error Type: Unauthorized
Error Value: You are not allowed to access manage_page_header in this context
From what I've been able to determine this has something to do with the code's use of MessageDialog to display responses (if I comment out these calls it seems to fix the error, but having no user feedback really isn't an appropriate solution), but I'm having enough trouble following the Zope code (and confess I really don't understand Zope permissions as well as I'd like to) so I'm kinda stumped from there.
Does anybody have any suggestions as to how I can get things to work so that anonymous users can create an account for themselves without site-admin intervention?
Thankx..
I forgot to mention, I'm using XUF 0.10.8 with Zope 2.5.1, if it should be significant..