Hi,
I'm trying to create a new user account (Sign Up) via my deployed
version of CE on Heroku. However, after I enter all the information in
the form and submit (Sign Up!) I keep getting a redirect to the 404
page saying that:
"The page you were looking for doesn't exist.
You may have mistyped the address or the page may have moved."
All my files are successfully added to git index and pushed to Heroku
server. I looked in users_controller.rb line 289 and I can't figure
out why it doesn't render the 'signup_completed' page.
By default the AppConfig.closed_beta_mode flag is set to false in
application.yml. Do I need to change that config flag to true when I
deploy, or change something else in my application.yml? I tried
changing closed_beta_mode to true, but that didn't have any impact
whatsoever, got the same redirect page.
Note: This is not a problem in development, only in production.
Please let me know of a configuration that I might be missing. I've
setup my ActionMailer to work with Gmail in the following manner:
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "gmail.com",
:authentication => :plain,
:user_name => "siyan",
:password => "123456",
:enable_starttls_auto => true
}
Thanks,
SS
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CommunityEngine" 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/communityengine?hl=en
-~----------~----~----~----~------~----~------~--~---