Personal tools

Talk:Gallery3:Modules:register

From Gallery Codex

Contents

Download-Button not available

The text states "Click the download button. Extract the registration module to your gallery3/modules directory." but no download button can be seen and the git-page lists Downloads(0), too.


Guests cannot access the 'register' button in some case

If you set all guest permissions to 'none', then guest cannot see the site content. Therefore, he cannot access to 'register' button. I think that that button should be added to the page require logging-in: http://grab.by/19lb

--Mamouneyya 16:05, 12 December 2009 (UTC)

Question....

Thanks for developing this module - this is the one I have been waiting for - i check every few days....  ;)

But, I installed the register module (24 hours ago) and when I follow the directions to activate the module and then navigate to the settings, I get a blank page. I enabled error reporting and I get one line that shows when I try to go to "settings -> User Registration": (i am changing some of the base directories for anonymity) Fatal error: Class 'identity' not found in /home/content/.../gallery3/modules/register/controllers/admin_register.php on line 104

I also noticed in the there are three new variables under "Settings -> Advanced" Two of those are set to default - should I change them?

Thanks!

PS When this is figured out, I am more than happy to write up a brief 'how-to" for use in this wiki.

Email admin on registration?

Anybody managed to get an email also sent to admin once an account has been registered. I had a look and found the code that sends the email, but I couldn't find the function send_confirmation. Any ideas? --Sunwise 09:22, 26 July 2010 (UTC)

In answer to my own question, I added the following code to line 47 in the register.php file located in the folder controllers.

    $adminmessage = "You have a new user on your gallery.";
         $adminheaders  = "From: Gallery <noreply@mysite.co.uk>";
         mail('me@myemail.co.uk', 'Your gallery has a new user', $adminmessage, $adminheaders);

Tested and it works for me, I have it set to no admin intervention and the user must confirm their email. --Sunwise 17:12, 27 July 2010 (UTC)

advertisements