search for: myapp_fcgi_crash

Displaying 10 results from an estimated 10 matches for "myapp_fcgi_crash".

2005 Aug 24
1
FastCGI timeout problem
...ic) server "/files/Siteuri/colectii/public/dispatch.fcgi [Thu Aug 25 00:13:49 2005] [error] [client 192.168.0.19] FastCGI: incomplete headers (0 bytes) received from server "/files/sites/myapp/public/dispatch.fcgi" My dispatch.fcgi is : RailsFCGIHandler.process! ''/var/log/myapp_fcgi_crash.log'' require File.dirname(__FILE__) + "/../config/environment" require ''fcgi'' I tried also with and i had the same problem RailsFCGIHandler.process! ''/var/log/myapp_fcgi_crash.log'' require File.dirname(__FILE__) + "/../config/environmen...
2006 Mar 06
5
Dreamhost subscription?
I''m thinking about signing up with DreamHost for the base Level 1 $9.95 plan. Does anyone think that''s a bad idea? I''d like to know others thoughts, and who they recommend for RoR hosting? Thanks! -- Posted via http://www.ruby-forum.com/.
2006 Mar 30
4
404 Error on dispatch.fcgi
...memory footprint of your app. # # Example: # # Default log path, normal GC behavior. # RailsFCGIHandler.process! # # # Default log path, 50 requests between GC. # RailsFCGIHandler.process! nil, 50 # # # Custom log path, normal GC behavior. # RailsFCGIHandler.process! ''/var/log/myapp_fcgi_crash.log'' # require File.dirname(__FILE__) + "/../config/environment" require ''fcgi_handler'' class RailsFCGIHandler private def frao_handler(signal) dispatcher_log :info, "asked to terminate immediately" dispatcher_log :info, "frao handl...
2006 Apr 19
7
Setup problem
I am trying to set up rails and am have problems. I have googled everything I could think of, but have not found my problem. Here are my specs. Gentoo Linux 2006.0 Apache 2.2 Ruby 1.8.4 Gems 1.8 Rails 1.1.2 mod_fcgid 1.08 When I try to access my test rails app through the webserver, I get the following error in the error.log (after seeing a html 500 error on the page). [Fri Apr 14
2006 May 19
5
more fcgi problems
...memory footprint of your app. # # Example: # # Default log path, normal GC behavior. # RailsFCGIHandler.process! # # # Default log path, 50 requests between GC. # RailsFCGIHandler.process! nil, 50 # # # Custom log path, normal GC behavior. # RailsFCGIHandler.process! ''/var/log/myapp_fcgi_crash.log'' # require File.dirname(__FILE__) + "/../config/environment" require ''fcgi_handler'' RailsFCGIHandler.process! -- Posted via http://www.ruby-forum.com/.
2006 Jun 15
6
Problem with lighttpd
I have a problem with lighttpd on OSX. Everything builds fine (and webrick runs just fine) but lighttpd barfs: edward-kenworthys-computer:~/Development/Ruby/pricematic/trunk edward$ script/server => Booting lighttpd (use ''script/server webrick'' to force WEBrick) => Rails application started on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown
2010 Apr 03
0
Deployment problem with apache + fastcgi
...$1.html [QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ dispatch.fcgi [QSA,L] Dispatch.fcgi file contents: #!/usr/local/bin/ruby require File.dirname(__FILE__) + "/../config/environment" require ''fcgi_handler'' RailsFCGIHandler.process! ''/var/log/myapp_fcgi_crash.log'' For request: http://mydomain/ i get "welcome ruby on rails page" with information about Rails, Ruby, Gems versions. I renamed index.html in public directory and wrote default "root" controller in routes.rb. But there was an error. I get only: NameError in [Contr...
2006 Sep 19
9
RoR with apache2 on SuSE
...g on the memory footprint of your app. # # Example: # # Default log path, normal GC behavior. # RailsFCGIHandler.process! # # # Default log path, 50 requests between GC. # RailsFCGIHandler.process! nil, 50 # # # Custom log path, normal GC behavior. # RailsFCGIHandler.process! ''/var/log/myapp_fcgi_crash.log'' # require File.dirname(__FILE__) + "/../config/environment" require ''fcgi_handler'' RailsFCGIHandler.process! All of the tutorials that I find seem to say the same stuff, has anyone set this up before that could help? thanks, Tate -- Posted via http:...
2006 Jun 15
6
Error in dispatch.fcgi...
...memory footprint of your app. # # Example: # # Default log path, normal GC behavior. # RailsFCGIHandler.process! # # # Default log path, 50 requests between GC. # RailsFCGIHandler.process! nil, 50 # # # Custom log path, normal GC behavior. # RailsFCGIHandler.process! ''/var/log/myapp_fcgi_crash.log'' # require File.dirname(__FILE__) + "/../config/environment" require ''fcgi_handler'' RailsFCGIHandler.process! Yes, the reference to the ruby/bin directory is correct. .htaccess: # General Apache options AddHandler fastcgi-script .fcgi AddHandler cgi-scri...
2006 May 09
7
FCGI and the never ending saga of deploying on Dreamhost
I''m trying to setup an app on Dreamhost and running into no end of problems. The app is running with edge rails and I''m currently getting the dreaded ''Rails application failed to start'' white screen when trying to access it. I''ve gone through all the ''gotchas'' and troubleshooting docs at Dreamhost and the rails wiki to no avail.