the url is /users since you are in the create action of the users controller and that's where the error occurred. a 404 usually means that you are missing a template. could you post any log message regarding this error?
On Tue, Oct 27, 2009 at 1:33 PM, SS <[email protected]> wrote: > > yeah, my APP_URL is set in the production.rb. I noticed that if I > select (highlight) the URL in the browser and press Enter, the server > directs me to People section on the website, however after I sign up > it doesn't take me all the way to the ../users (People) page. > > > > On Oct 26, 7:24 pm, Jim Ruther Nill <[email protected]> wrote: > > hmm.. maybe you've missed assigning APP_URL in > environments/production.rb? > > > > > > > > On Tue, Oct 27, 2009 at 4:53 AM, SS <[email protected]> wrote: > > > > > 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 > > > > -- > > "We do not believe in ourselves until someone reveals that deep inside us > is > > valuable, worth listening to, worthy of our trust, sacred to our touch." > - > > E. E. Cummings > > > -- "We do not believe in ourselves until someone reveals that deep inside us is valuable, worth listening to, worthy of our trust, sacred to our touch." - E. E. Cummings --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
