forum.coppermine-gallery.net

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: bit bit spears on July 21, 2004, 07:17:28 am

Title: is this possible?
Post by: bit bit spears on July 21, 2004, 07:17:28 am
hey, can anyone think of a way that we can manually activate users? any workarounds/hacks?

i want to keep a eye on who i let in, so i would like them to be able to register, but then i would have to send them an email my self saying they are now active-is this possible?
Title: Re: is this possible?
Post by: Joachim Müller on July 21, 2004, 08:32:20 am
This has been asked before. Enable "User registration requires email verification" in coppermine config, then edit register.php, find
Code: [Select]
if (!cpg_mail($email, sprintf($lang_register_php['confirm_email_subject'], $CONFIG['gallery_name']), strtr($lang_register_confirm_email, $template_vars))) {
            cpg_die(CRITICAL_ERROR, $lang_register_php['failed_sending_email'], __FILE__, __LINE__);
and replace with
Code: [Select]
if (!cpg_mail($CONFIG['gallery_admin_email'], sprintf($lang_register_php['confirm_email_subject'], $CONFIG['gallery_name']), strtr($lang_register_confirm_email, $template_vars))) {
            cpg_die(CRITICAL_ERROR, $lang_register_php['failed_sending_email'], __FILE__, __LINE__);
This way, the registration mail will be sent to you (as admin) instead of the user, and you will have to activate him (or not, your coice).

GauGau
Title: Re: is this possible?
Post by: bit bit spears on July 21, 2004, 07:40:53 pm
VERY nice! Thanks gaugau-i am sooo excited now:)
Title: Re: is this possible?
Post by: Rafael_XCX on August 11, 2006, 10:03:52 am
Thanks a lot! I needed that too!  ;D