Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...4.7 Register link bad?4.7 Register link bad?
Previous
 
Next
New Post
6/15/2009 6:26 AM
 

I do not know if this fix will work for anyone else.

Version 04.09.04, registration page not loading.

I went into Admin: site settings. in the "advanced settings" field, I changed "user page" to <none specified>

registration now works.

I know it can't be that simple, but there it is.

 
New Post
8/6/2009 5:09 AM
 

Yep, I'm seeing the same problem on 5.01.01

 
New Post
8/8/2009 8:09 AM
 

Note Users can register if there is an appropriate token on the skin, user account however is a known issue: 

DNN-10491


Alex Shirley


 
New Post
8/15/2009 8:25 PM
 

I've just made this comment on Gemini...

I've been doing some DIY debugging on this issue...

The "Account Login" register link is handled by cmdRegister_Click in DesktopModules\Admin\Authentication\Login.ascx.vb.
The code in this event handler only redirects to the register page for  "Public" and "Verified" portal user registrations.

This is in contrast to the skin object register link handled by cmdRegister_Click in admin\Skins\User.ascx.vb.
The code in this event handler redirects to a register page for any portal registration type except "NoRegistration" (ie it works for "Private" sites too).

I've never tried rebuilding a core dll but I guess the time has come...
 

 

 
New Post
8/15/2009 9:43 PM
 

Ive just editing my previous post on Gemini...


The good news is that the affected code-behind file is not compiled so I could fix this as follows...
- open DesktopModules\Admin\Authentication\Login.ascx.vb in notepad
- find cmdRegister_Click and change the the following IF statement from...
                If PortalSettings.UserRegistration = PortalRegistrationType.PublicRegistration Then
                    'Pass return url to register
                    Response.Redirect(RegisterURL(ReturnUrl, Null.NullString), True)
                ElseIf PortalSettings.UserRegistration = PortalRegistrationType.VerifiedRegistration Then
                    'Pass return url to register as original url  and return to this control to login after regsitration
                    Response.Redirect(RegisterURL(ReturnUrl, Null.NullString), True)
                End If

...to...
                If PortalSettings.UserRegistration <> PortalRegistrationType.NoRegistration Then
                    'Pass return url to register
                    Response.Redirect(RegisterURL(ReturnUrl, Null.NullString), True)
                End If

- Save and you're done.

 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...4.7 Register link bad?4.7 Register link bad?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out