I was wondering if there was anyway to not create the accounts until they are approved on the admin side?
I had a couple fake spam accounts get registered today and before I could even delete them the system already created the accounts which makes those pilot ID’s unusable. I also have the SMF auto account registration module installed which created the accounts on my forum as well.
It would be great if the system wouldn’t create anything until I approve them in the admin center. Is this possible? If not, is this doable in an update?
Thanks,
Keith
sean212
February 23, 2010, 10:03pm
2
Just put this in your app/app.config.php file
Config::Set('PILOT_AUTO_CONFIRM', false);
Just put this in your app/app.config.php file
Config::Set(‘PILOT_AUTO_CONFIRM’, false);
Thanks!
I’ll check that when I get home and post back but for some reason I think I already did that.
joeri
February 23, 2010, 10:52pm
4
Thanks!
I’ll check that when I get home and post back but for some reason I think I already did that.
put it in your local.config
nabeel
February 23, 2010, 11:45pm
5
It will always create the account, it has to be stored somewhere, but they won’t be active until you approve.
Spam accounts - I think the next version I’ll implement recaptcha, since there is a public key setting so that should make that feasible
liberie
February 23, 2010, 11:59pm
6
put it in your local.config
hum that doesn’t work so well example, if 3 pilots register and you denied the first 2 the third pilot still have the ID3 and the fourth will have ID4 etc…
1 and 2 will be lost forever
liberie
February 24, 2010, 12:02am
7
It will always create the account, it has to be stored somewhere, but they won’t be active until you approve.
Spam accounts - I think the next version I’ll implement recaptcha, since there is a public key setting so that should make that feasible
Nabeel even with recaptcha (which is a nice product) always have the ‘evil’ people which wants to make bad things
and can pass one afternoon at some lanhouse creating fake accounts, do you think will be too much work to change the system to use a temporary table
until is approved and only give the pilot id when is approved/committed to the pilots table ?
nabeel
February 24, 2010, 12:38am
8
Nabeel even with recaptcha (which is a nice product) always have the ‘evil’ people which wants to make bad things
and can pass one afternoon at some lanhouse creating fake accounts, do you think will be too much work to change the system to use a temporary table
until is approved and only give the pilot id when is approved/committed to the pilots table ?
I don’t know, I’ll look into it
sean212
February 24, 2010, 12:44am
9
I would go for reCaptcha (http://recaptcha.net/ )
Config::Set('PILOT_AUTO_CONFIRM', false);
Just checked and I do have the above in my local config file.
I don’t know, I’ll look into it
Thanks Nabeel. This temporary table, if possible, would be great to help control false registrations issues like I had today.