[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Vince Hodges
Hi, A couple of things to try/check. 1) Look in the apache error logs for the virtual host, passenger may be reporting issues there. 2) Did you create the DB, migrate it, etc (I know you probably did, but when you get frustrated sometimes it's the basic things you forgot to do). Vince On

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Frederick Cheung
On Aug 12, 3:37 pm, Alpha Blue rails-mailing-l...@andreas-s.net wrote: The title says it all - please bear with me.  To let you know where I stand, I have been working for up to 12 hours a day for 2 months and 2 weeks trying to get my site ready for release.  In development (on windows) it

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread bill walton
Hi Joel, You might get the help you need here but this is primarily a dev list. You might also try requesting assistance on the rails-deploy list. Best regards, Bill On Wed, 2009-08-12 at 16:37 +0200, Alpha Blue wrote: The title says it all - please bear with me. To let you know where I

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Rails List
Hey, there is nothing to worry. you are exactly in a position that I was in couple of weeks ago. I'll try my best. 1. Are you on a shared host or a dedicated environment? ( i guess you are on a shared host). 2. Did you check the path of your environment. Do they include your ruby/rails

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Frederick Cheung
On Aug 12, 3:46 pm, Frederick Cheung frederick.che...@gmail.com wrote: On Aug 12, 3:37 pm, Alpha Blue rails-mailing-l...@andreas-s.net wrote: The title says it all - please bear with me.  To let you know where I stand, I have been working for up to 12 hours a day for 2 months and 2

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
If I try script/console, sudo script/console etc., none of those commands work from my app in linux. It's as if the commands are not in the right path. -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Jeffrey L. Taylor
Quoting Alpha Blue rails-mailing-l...@andreas-s.net: The title says it all - please bear with me. To let you know where I stand, I have been working for up to 12 hours a day for 2 months and 2 weeks trying to get my site ready for release. In development (on windows) it works perfectly.

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
I'm not afraid of using linux and bash commands are fairly self-informative. The issue I have right now is I'm not sure where everything resides path wise so that I can export it correctly: echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games: -- Posted via

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Frederick Cheung
On Aug 12, 3:57 pm, Alpha Blue rails-mailing-l...@andreas-s.net wrote: If I try script/console, sudo script/console etc., none of those commands work from my app in linux.  It's as if the commands are not in the right path. you need to type ruby script/console Fred -- Posted

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread heimdull
I'm not sure what user that you are running as BUT it looks like you installed all the gems in your home directory. This might be an issue if apache/passenger runs as a different user... Run sudo rake gems:install WARNING: Installing to ~/.gem since /usr/lib/ruby/gems/1.8 and

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
ruby script/server = Booting Mongrel = Rails 2.3.3 application starting on http://0.0.0.0:3000 = Call with -d to detach = Ctrl-C to shutdown server .. no issues ruby script/server -e production = Booting Mongrel = Rails 2.3.3 application starting on http://0.0.0.0:3000 = Call with -d to detach

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Marnen Laibow-Koser
Alpha Blue wrote: The title says it all - please bear with me. To let you know where I stand, I have been working for up to 12 hours a day for 2 months and 2 weeks trying to get my site ready for release. Yikes! Please see http://c2.com/cgi/wiki?SustainablePace . In development (on

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
Okay, lots of good info - thanks guys. I'm making some headway.. here's where I stand: First, I removed the requires in environment.rb I added the config.gem statements for only redcloth and mislav-will_paginate I did a restart of my web server just to make sure everything is okay..

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Frederick Cheung
On Aug 12, 4:20 pm, heimdull fre...@cfandersen.com wrote: I'm not sure what user that you are running as BUT it looks like you installed all the gems in your home directory. This might be an issue if apache/passenger runs as a different user... More than that if the user passenger runs as

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
adding to my topic post above,.. When using config.gem in environment.rb are those case sensitive? Or, lower case like requires? -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread heimdull
It should be RedCloth NOT redcloth... On Aug 12, 8:52 am, Alpha Blue rails-mailing-l...@andreas-s.net wrote: Okay, lots of good info - thanks guys.  I'm making some headway.. here's where I stand: First, I removed the requires in environment.rb I added the config.gem statements for only

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Marnen Laibow-Koser
Alpha Blue wrote: adding to my topic post above,.. When using config.gem in environment.rb are those case sensitive? Or, lower case like requires? Always assume case sensitivity. Ruby is case-sensitive, and so are most *nix filesystems. Come to think of it, that's probably your

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
Here's my current environment.rb file and my gems env information http://pastie.org/581497 I'm still unable to get rake gems:install to work or for my app to find the two gems I have already installed which work with IRB and require rubygems -- Posted via http://www.ruby-forum.com/.

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Vince Hodges
For mislav-will-paginate I have the following in environment.rb: config.gem 'mislav-will_paginate', :version = '~ 2.3.8', :lib = 'will_paginate', :source = 'http://gems.github.com' The lib field is probably what you need (adjust the version as needed). Vince On Wed, Aug 12, 2009 at 9:29 AM,

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
Updated the new pastie with everything: http://pastie.org/581497 It contains: environment.rb with libs gems list rake gems and apache error logs -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are

[Rails] Re: I am very overwhelmed going to production and need help

2009-08-12 Thread Alpha Blue
woohoo I fixed it! I got rid of hectoregm-msyql-ruby and installed mysql gem I had forgotten that I had hectoregm installed for when I was going to ruby 1.9.1. That fixed the issue and my site launched! Still probably will be errors but here's what it looks like: http://ncaastatpages.com