URGENT! Registration not working

Permalink
I'm using a registration form on my newest C5 build.

This was all working fine until the other night. Nothing has changed regarding the register form and i haven't edited any core files, apart from allowing advanced permissions (working fine).

I now have a massive problem as whenever a new user tries to register, they can't ever get past the registration form, it obviously tries to process the form because it forwards the URL from...

/index.php/register

to

/index.php/register/do_register/

...but the form never actually adds the user to the site or sends the registering user an email to ask to validate (i am using the 'Registration enabled, email must be validated' option)

This is pretty urgent to get sorted if anyone can help? it's ready to go live bar this problem.

Thank you in advance for any help on this!

Regards
Dave

Prkns
 
jbx replied on at Permalink Reply
jbx
What actually does happen? Does the user see the thank you page, blank page, error page??

Jon
Mnkras replied on at Permalink Reply
Mnkras
and what theme are you using
kirkroberts replied on at Permalink Reply
kirkroberts
I had the same issue. Chances are there is an error that isn't being shown.

For some reason the register single page is missing the error printing found on some other pages.

If you add this:
if (isset($error) && $error->has()) {
        $error->output();
    }

into your register.php single_pages (view) it should show the errors. I added mine around line 31, just after the $success else conditional.

Hope that helps!
surefyre replied on at Permalink Reply
surefyre
** BUMP **

I just got caught out by this in 5.4.2.2

Needs fixing.

in fact...
** Bug submitted
kirkroberts replied on at Permalink Reply
kirkroberts
surefyre, why are you bumping this? The solution to the original question is provided.
Unless you provide detail on your issue we can't help.
surefyre replied on at Permalink Reply
surefyre
Just to draw attention to the fact that it still seems to be an overlooked
issue in 5.4.2.1, I remembered being caught out by this same thing several
versions ago last year once I'd read this solution. Made a bug post anyway.

G

Linked In <http://uk.linkedin.com/in/guyeastwood> - G+<http://plusya.com/guy>-
Facebook <http://www.facebook.com/guyeastwood> - Fonovation
Limited<http://www.fonovation.com>
- Surefyre Design <http://www.surefyre.com>


On 18 October 2011 14:57, Concrete5 Community
<discussions@concretecms.com>wrote: