Guest User

Untitled

a guest
Feb 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. ## Apache Error Log ##
  2. [Sat Jul 15 10:33:47 2006] [warn] FastCGI: (dynamic) server "C:/www/satplace/public/dispatch.fcgi" started (pid 3356)
  3. [Sat Jul 15 10:33:47 2006] [warn] FastCGI: (dynamic) server "C:/www/satplace/public/dispatch.fcgi" (pid 3356) terminated with exit with status '1'
  4. [Sat Jul 15 10:33:52 2006] [warn] FastCGI: (dynamic) server "C:/www/satplace/public/dispatch.fcgi" restarted (pid 1628)
  5. [Sat Jul 15 10:33:52 2006] [warn] FastCGI: (dynamic) server "C:/www/satplace/public/dispatch.fcgi" (pid 1628) terminated with exit with status '1'
  6. [Sat Jul 15 10:33:57 2006] [warn] FastCGI: (dynamic) server "C:/www/satplace/public/dispatch.fcgi" restarted (pid 1464)
  7. [Sat Jul 15 10:33:57 2006] [warn] FastCGI: (dynamic) server "C:/www/satplace/public/dispatch.fcgi" (pid 1464) terminated with exit with status '1'
  8.  
  9. ## railsApp/log/server.log ##
  10. [Sat Jul 15 10:33:52 2006] [error] [client 127.0.0.1] (OS 109)The pipe has been ended. : FastCGI: comm with server "C:/www/satplace/public/dispatch.fcgi" aborted: GetOverlappedResult() failed
  11. [Sat Jul 15 10:33:52 2006] [error] [client 127.0.0.1] FastCGI: incomplete headers (0 bytes) received from server "C:/www/satplace/public/dispatch.fcgi"
  12.  
  13. ## railsApp/public/dispatch.fcgi ##
  14. #!c:/Progra~1/ruby/bin/ruby
  15. #
  16. # You may specify the path to the FastCGI crash log (a log of unhandled
  17. # exceptions which forced the FastCGI instance to exit, great for debugging)
  18. # and the number of requests to process before running garbage collection.
  19. #
  20. # By default, the FastCGI crash log is RAILS_ROOT/log/fastcgi.crash.log
  21. # and the GC period is nil (turned off). A reasonable number of requests
  22. # could range from 10-100 depending on the memory footprint of your app.
  23. #
  24. # Example:
  25. # # Default log path, normal GC behavior.
  26. # RailsFCGIHandler.process!
  27. #
  28. # # Default log path, 50 requests between GC.
  29. # RailsFCGIHandler.process! nil, 50
  30. #
  31. # # Custom log path, normal GC behavior.
  32. # RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log'
  33. #
  34. require File.dirname(__FILE__) + "/../config/environment"
  35. require 'fcgi_handler'
  36.  
  37. RailsFCGIHandler.process!
  38.  
  39. ## Other stuff
  40. fascgi.crash.log doesn't have anything from this morning.
  41. Neither does /railsApp/log/development.log
Add Comment
Please, Sign In to add comment