Hello Insoshi Folks -

On my Sign Up process, new registrants are being sent to /people with
an 500 Error - Page not Found using IE and an Application Failed when
using FireFox. Although they do receive an email to "activate" their
account successfully by following the link in the email.

So, I do know that the email creation is working, but the flash notice
of "(Thanks for signing up! A verification email has been sent to
[EMAIL PROTECTED])" is not being generated. The failure takes place
right after:

@person.email_verifications.create

Your help please in understanding why the hangup is occurring in the
people_controller.rb "def create" method?

def create

cookies.delete :authtoken @person = Person.new(params[:person])
respondto do |format| @person.deactivated = true if
globalprefs.emailverifications? if @person.save if
globalprefs.emailverifications? @person.emailverifications.create
flash[:notice] = %(Thanks for signing up! A verification email has
been sent to [EMAIL PROTECTED]) format.html { redirectto(homeurl) }
else self.currentperson = @person flash[:notice] = "Thanks for signing
up!" format.html { redirectbackordefault(homeurl) } end else @body =
"register single-col" format.html { render :action => 'new' }
end end
end

Thanks, MikFig

--~--~---------~--~----~------------~-------~--~----~
Insoshi developer site: http://dogfood.insoshi.com/
Insoshi documentation: http://docs.insoshi.com/

You received this message because you are subscribed to the Google
Groups "Insoshi" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/insoshi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to