diff --git a/app/controllers/subscribers_controller.rb b/app/controllers/subscribers_controller.rb index 887413d..0a16c0c 100644 --- a/app/controllers/subscribers_controller.rb +++ b/app/controllers/subscribers_controller.rb @@ -5,11 +5,6 @@ class SubscribersController < ApplicationController def new @subscriber = Subscriber.new @subscriber.referrer = request.referer - - respond_to do |format| - format.html # new.html.erb - format.xml { render :xml => @subscriber } - end end # POST /subscribers @@ -19,18 +14,15 @@ def create @subscriber.ip = request.remote_ip @subscriber.user_agent = request.user_agent - - #respond_to do |format| - if @subscriber.save - flash[:notice] = 'Subscriber was successfully created.' - #redirect_to ( :action => 'new') - #format.html { redirect_to(@subscriber) } - #format.xml { render :xml => @subscriber, :status => :created, :location => @subscriber } - else - #flash[:notice] = 'error' - render( :action => 'new' ) - end - #end + + if @subscriber.save + flash[:notice] = 'thank you' + redirect_to (:action => 'new') + else + flash[:notice] = 'error' + render(:action => 'new') + end + end end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index a48beca..c60a873 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -12,6 +12,9 @@ Test + <% unless flash[:notice].blank? %> +
<%= flash[:notice] %>
+ <% end %>
<%= editable_area('header') %>
diff --git a/app/views/subscribers/new.html.erb b/app/views/subscribers/new.html.erb index bb4f8cb..18febe2 100644 --- a/app/views/subscribers/new.html.erb +++ b/app/views/subscribers/new.html.erb @@ -1,5 +1,6 @@ -

New subscriber

+

Welcome to our site

+

<% form_for(@subscriber) do |f| %> <%= f.error_messages %> <%= f.hidden_field :referrer, :value => @subscriber.referrer %> @@ -8,7 +9,7 @@ E-mail: <%= f.text_field :email %>

- <%= f.submit "Create" %> + <%= f.submit "Ok" %>

<% end %> diff --git a/config/environment.rb b/config/environment.rb index 29fd284..911aae0 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -67,16 +67,5 @@ # Activate observers that should always be running # config.active_record.observers = :cacher, :garbage_collector - config.action_mailer.delivery_method = :test - - - config.action_mailer.smtp_settings = { - :address => "domain.of.smtp.host.net" , - :port => 25, - :domain => "domain.of.sender.net" , - :authentication => :login, - :user_name => "dave" , - :password => "secret" - } end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index f2eafa3..e59008b 100644 Binary files a/db/development.sqlite3 and b/db/development.sqlite3 differ diff --git a/log/development.log b/log/development.log index 1e79912..0fdc07d 100644 --- a/log/development.log +++ b/log/development.log @@ -138199,3 +138199,3299 @@ ActionView::MissingTemplate (Missing template errors/404.html.erb in view path / script/server:3 Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#new (for 10.0.0.194 at 2008-07-10 18:17:45) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"new", "controller"=>"subscribers"} +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000474) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000377) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.02217 (45 reqs/sec) | Rendering: 0.01202 (54%) | DB: 0.00085 (3%) | 200 OK [http://tsweb.toa/subscriber/new] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:46) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000198) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:46) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:46) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000172) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:46) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:17:49) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>""}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000163) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000369) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000389) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.02054 (48 reqs/sec) | Rendering: 0.01004 (48%) | DB: 0.00092 (4%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:50) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000173) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:50) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:50) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000183) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:50) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:17:58) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>"0@c."}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000154) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '0@c.')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000353) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000363) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.01906 (52 reqs/sec) | Rendering: 0.00940 (49%) | DB: 0.00087 (4%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:59) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000178) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:59) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:59) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000203) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:17:59) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:18:03) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>"0@c.ru"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000153) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '0@c.ru')  + Subscriber Create (0.000415) INSERT INTO "subscribers" ("updated_at", "referrer", "user_agent", "ip", "email", "created_at") VALUES('2008-07-10 14:18:03', '', 'Mozilla/5.0 (X11; U; Linux i686; uk-UA; rv:1.8.1.11) Gecko/20071210 Firefox/2.0.0.11', '10.0.0.194', '0@c.ru', '2008-07-10 14:18:03') +Sent mail to email + +Date: Thu, 10 Jul 2008 18:18:03 +0400 +From: spalsh@test.net +To: email +Subject: Thank you for using our site!!! +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 + +ew +Rendering template within layouts/application +Rendering subscribers/create +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000368) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000391) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.83556 (1 reqs/sec) | Rendering: 0.00897 (1%) | DB: 0.00133 (0%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:04) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIilTdWJzY3JpYmVyIHdhcyBzdWNjZXNzZnVsbHkgY3Jl +YXRlZC4GOgpAdXNlZHsGOwdG--4508bc455aae706af031ed4f74817536f7b0f88d + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000189) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:04) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIilTdWJzY3JpYmVyIHdhcyBzdWNjZXNzZnVsbHkgY3Jl +YXRlZC4GOgpAdXNlZHsGOwdG--4508bc455aae706af031ed4f74817536f7b0f88d + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:04) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000167) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:04) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:18:16) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>"0@c.ru"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000267) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '0@c.ru')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000383) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000391) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.02010 (49 reqs/sec) | Rendering: 0.00981 (48%) | DB: 0.00104 (5%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:16) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000168) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:16) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:17) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000179) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:18:17) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:20:15) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>"0vg@c.ru"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000169) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '0vg@c.ru')  + Subscriber Create (0.000260) INSERT INTO "subscribers" ("updated_at", "referrer", "user_agent", "ip", "email", "created_at") VALUES('2008-07-10 14:20:15', '', 'Mozilla/5.0 (X11; U; Linux i686; uk-UA; rv:1.8.1.11) Gecko/20071210 Firefox/2.0.0.11', '10.0.0.194', '0vg@c.ru', '2008-07-10 14:20:15') +Sent mail to email + +Date: Thu, 10 Jul 2008 18:20:15 +0400 +From: spalsh@test.net +To: email +Subject: Thank you for using our site!!! +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 + +ew +Redirected to http://tsweb.toa:4602/subscribers/new + + +NoMethodError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.to_sym): + /vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `extra_keys' + /vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `map' + /vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `extra_keys' + generated code (/vendor/rails/actionpack/lib/action_controller/routing/route.rb:45):3:in `generate' + /vendor/rails/actionpack/lib/action_controller/routing/route.rb:122:in `generate' + /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:337:in `generate' + /vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:131:in `rewrite_path' + /vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:110:in `rewrite_url' + /vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:88:in `rewrite' + /vendor/rails/actionpack/lib/action_controller/base.rb:611:in `url_for' + (eval):17:in `subscriber_url' + /vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:105:in `send!' + /vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:105:in `polymorphic_url' + /vendor/rails/actionpack/lib/action_controller/base.rb:613:in `url_for' + /vendor/rails/actionpack/lib/action_controller/base.rb:1058:in `redirect_to' + /app/controllers/subscribers_controller.rb:27:in `create' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `call' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in `call' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in `respond' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:154:in `each' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:154:in `respond' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' + /app/controllers/subscribers_controller.rb:23:in `create' + /vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `perform_action_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:21:42) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIilTdWJzY3JpYmVyIHdhcyBzdWNjZXNzZnVsbHkgY3Jl +YXRlZC4GOgpAdXNlZHsGOwdG--4508bc455aae706af031ed4f74817536f7b0f88d + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>"0vg@c.ru"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000274) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '0vg@c.ru')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000388) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000399) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 + + +NoMethodError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.call): + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:154:in `each' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:154:in `respond' + /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' + /app/controllers/subscribers_controller.rb:23:in `create' + /vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `perform_action_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#new (for 10.0.0.194 at 2008-07-10 18:27:56) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"new", "controller"=>"subscribers"} +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000350) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000372) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.01803 (55 reqs/sec) | Rendering: 0.00954 (52%) | DB: 0.00072 (4%) | 200 OK [http://tsweb.toa/] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:27:56) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B1Q=--022b0145b67af02e82188de06c6f6fad72d91625 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000185) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:27:56) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B1Q=--022b0145b67af02e82188de06c6f6fad72d91625 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:27:56) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000168) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:27:56) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:28:23) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>"asdf@ghjk.qwerty"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000159) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = 'asdf@ghjk.qwerty')  + Subscriber Create (0.000231) INSERT INTO "subscribers" ("updated_at", "referrer", "user_agent", "ip", "email", "created_at") VALUES('2008-07-10 14:28:23', '', 'Mozilla/5.0 (X11; U; Linux i686; uk-UA; rv:1.8.1.11) Gecko/20071210 Firefox/2.0.0.11', '10.0.0.194', 'asdf@ghjk.qwerty', '2008-07-10 14:28:23') +Sent mail to email + +Date: Thu, 10 Jul 2008 18:28:23 +0400 +From: spalsh@test.net +To: email +Subject: Thank you for using our site!!! +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 + +ew +Rendering template within layouts/application +Rendering subscribers/new + + +ActionView::TemplateError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.to_sym) on line #4 of subscribers/new.html.erb: +1:

Welcome to our site

+2: +3:

+4: <% form_for(@subscriber) do |f| %> +5: <%= f.error_messages %> +6: <%= f.hidden_field :referrer, :value => @subscriber.referrer %> +7: + + vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `extra_keys' + vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `map' + vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `extra_keys' + generated code (/home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/routing/route.rb:45):3:in `generate' + vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:337:in `generate' + vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:131:in `rewrite_path' + vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:110:in `rewrite_url' + vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:88:in `rewrite' + vendor/rails/actionpack/lib/action_controller/base.rb:611:in `url_for' + vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb:71:in `send' + vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb:71:in `url_for' + (eval):17:in `subscriber_path' + vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:105:in `send!' + vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:105:in `polymorphic_url' + vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:112:in `polymorphic_path' + vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:269:in `apply_form_for_options!' + vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:248:in `form_for' + app/views/subscribers/new.html.erb:4:in `_run_erb_47app47views47subscribers47new46html46erb' + vendor/rails/actionpack/lib/action_view/base.rb:346:in `send' + vendor/rails/actionpack/lib/action_view/base.rb:346:in `execute' + vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `send' + vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `render' + vendor/rails/actionpack/lib/action_view/template.rb:36:in `render' + vendor/rails/actionpack/lib/action_view/template.rb:23:in `render_template' + vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + vendor/rails/actionpack/lib/action_controller/base.rb:855:in `render_with_no_layout' + vendor/rails/actionpack/lib/action_controller/base.rb:869:in `render_with_no_layout' + vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + app/controllers/subscribers_controller.rb:24:in `create' + vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `send' + vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `perform_action_without_filters' + vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters' + vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching' + vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:30:24) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdG--4289c41f11070836f83e70e2629d466c9ee1a894 + Parameters: {"commit"=>"Create", "subscriber"=>{"referrer"=>"", "email"=>"asdf@ghjk.qwerty"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000265) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = 'asdf@ghjk.qwerty')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000369) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000370) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.02040 (49 reqs/sec) | Rendering: 0.01032 (50%) | DB: 0.00100 (4%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:30:24) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000188) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:30:24) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:30:25) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000168) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:30:25) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:30:35) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Ok", "subscriber"=>{"referrer"=>"", "email"=>"as12f@ghjk.qwerty"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000160) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = 'as12f@ghjk.qwerty')  + Subscriber Create (0.000254) INSERT INTO "subscribers" ("updated_at", "referrer", "user_agent", "ip", "email", "created_at") VALUES('2008-07-10 14:30:35', '', 'Mozilla/5.0 (X11; U; Linux i686; uk-UA; rv:1.8.1.11) Gecko/20071210 Firefox/2.0.0.11', '10.0.0.194', 'as12f@ghjk.qwerty', '2008-07-10 14:30:35') +Sent mail to email + +Date: Thu, 10 Jul 2008 18:30:36 +0400 +From: spalsh@test.net +To: email +Subject: Thank you for using our site!!! +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 + +ew +Rendering template within layouts/application +Rendering subscribers/new + + +ActionView::TemplateError (You have a nil object when you didn't expect it! +The error occurred while evaluating nil.to_sym) on line #4 of subscribers/new.html.erb: +1:

Welcome to our site

+2: +3:

+4: <% form_for(@subscriber) do |f| %> +5: <%= f.error_messages %> +6: <%= f.hidden_field :referrer, :value => @subscriber.referrer %> +7: + + vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `extra_keys' + vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `map' + vendor/rails/actionpack/lib/action_controller/routing/route.rb:145:in `extra_keys' + generated code (/home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/routing/route.rb:45):3:in `generate' + vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:337:in `generate' + vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:131:in `rewrite_path' + vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:110:in `rewrite_url' + vendor/rails/actionpack/lib/action_controller/url_rewriter.rb:88:in `rewrite' + vendor/rails/actionpack/lib/action_controller/base.rb:611:in `url_for' + vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb:71:in `send' + vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb:71:in `url_for' + (eval):17:in `subscriber_path' + vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:105:in `send!' + vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:105:in `polymorphic_url' + vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:112:in `polymorphic_path' + vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:269:in `apply_form_for_options!' + vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:248:in `form_for' + app/views/subscribers/new.html.erb:4:in `_run_erb_47app47views47subscribers47new46html46erb' + vendor/rails/actionpack/lib/action_view/base.rb:346:in `send' + vendor/rails/actionpack/lib/action_view/base.rb:346:in `execute' + vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `send' + vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `render' + vendor/rails/actionpack/lib/action_view/template.rb:36:in `render' + vendor/rails/actionpack/lib/action_view/template.rb:23:in `render_template' + vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + vendor/rails/actionpack/lib/action_controller/base.rb:855:in `render_with_no_layout' + vendor/rails/actionpack/lib/action_controller/base.rb:869:in `render_with_no_layout' + vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + app/controllers/subscribers_controller.rb:24:in `create' + vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `send' + vendor/rails/actionpack/lib/action_controller/base.rb:1151:in `perform_action_without_filters' + vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters' + vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' + vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' + vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching' + vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#new (for 10.0.0.194 at 2008-07-10 18:32:00) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdG--4289c41f11070836f83e70e2629d466c9ee1a894 + Parameters: {"action"=>"new", "controller"=>"subscribers"} +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000366) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000374) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.01838 (54 reqs/sec) | Rendering: 0.00970 (52%) | DB: 0.00074 (4%) | 200 OK [http://tsweb.toa/subscribers/new] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:01) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000197) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:01) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:01) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000171) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:01) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:32:04) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Ok", "subscriber"=>{"referrer"=>"", "email"=>"rewrwrwer"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000165) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = 'rewrwrwer')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000385) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000388) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.02020 (49 reqs/sec) | Rendering: 0.00994 (49%) | DB: 0.00094 (4%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:05) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000175) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:05) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:05) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000192) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:05) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:32:10) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Ok", "subscriber"=>{"referrer"=>"", "email"=>"rewrwrwer@kgdhk.r"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000155) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = 'rewrwrwer@kgdhk.r')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000404) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000458) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.08823 (11 reqs/sec) | Rendering: 0.07825 (88%) | DB: 0.00102 (1%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:11) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000179) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:11) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:11) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000191) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:11) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:32:15) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Ok", "subscriber"=>{"referrer"=>"", "email"=>"rewrwrwer@kgdhk.ru"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000161) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = 'rewrwrwer@kgdhk.ru')  + Subscriber Create (0.000228) INSERT INTO "subscribers" ("updated_at", "referrer", "user_agent", "ip", "email", "created_at") VALUES('2008-07-10 14:32:15', '', 'Mozilla/5.0 (X11; U; Linux i686; uk-UA; rv:1.8.1.11) Gecko/20071210 Firefox/2.0.0.11', '10.0.0.194', 'rewrwrwer@kgdhk.ru', '2008-07-10 14:32:15') +Sent mail to email + +Date: Thu, 10 Jul 2008 18:32:15 +0400 +From: spalsh@test.net +To: email +Subject: Thank you for using our site!!! +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 + +ew +Redirected to http://tsweb.toa:4602/subscribers/new +Completed in 0.12035 (8 reqs/sec) | DB: 0.00039 (0%) | 302 Found [http://tsweb.toa/subscribers] + + +Processing SubscribersController#new (for 10.0.0.194 at 2008-07-10 18:32:16) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdG--4289c41f11070836f83e70e2629d466c9ee1a894 + Parameters: {"action"=>"new", "controller"=>"subscribers"} +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000386) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000385) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.01901 (52 reqs/sec) | Rendering: 0.01004 (52%) | DB: 0.00077 (4%) | 200 OK [http://tsweb.toa/subscribers/new] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:16) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000169) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:16) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:16) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000185) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:16) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:32:38) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Ok", "subscriber"=>{"referrer"=>"http://tsweb.toa:4602/subscribers", "email"=>"jhbjjgb@HGC.VGH"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000156) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = 'jhbjjgb@HGC.VGH')  + Subscriber Create (0.000220) INSERT INTO "subscribers" ("updated_at", "referrer", "user_agent", "ip", "email", "created_at") VALUES('2008-07-10 14:32:38', 'http://tsweb.toa:4602/subscribers', 'Mozilla/5.0 (X11; U; Linux i686; uk-UA; rv:1.8.1.11) Gecko/20071210 Firefox/2.0.0.11', '10.0.0.194', 'jhbjjgb@HGC.VGH', '2008-07-10 14:32:38') +Sent mail to email + +Date: Thu, 10 Jul 2008 18:32:38 +0400 +From: spalsh@test.net +To: email +Subject: Thank you for using our site!!! +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 + +ew +Redirected to http://tsweb.toa:4602/subscribers/new +Completed in 0.18357 (5 reqs/sec) | DB: 0.00038 (0%) | 302 Found [http://tsweb.toa/subscribers] + + +Processing SubscribersController#new (for 10.0.0.194 at 2008-07-10 18:32:38) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdG--4289c41f11070836f83e70e2629d466c9ee1a894 + Parameters: {"action"=>"new", "controller"=>"subscribers"} +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000360) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000378) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.01826 (54 reqs/sec) | Rendering: 0.00959 (52%) | DB: 0.00074 (4%) | 200 OK [http://tsweb.toa/subscribers/new] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:39) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000199) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:39) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:39) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000168) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:32:39) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#new (for 10.0.0.194 at 2008-07-10 18:36:00) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"new", "controller"=>"subscribers"} +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000372) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000386) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.02032 (49 reqs/sec) | Rendering: 0.01138 (56%) | DB: 0.00076 (3%) | 200 OK [http://tsweb.toa/subscribers/new] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:00) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000165) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:00) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:00) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000199) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:00) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:36:02) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Ok", "subscriber"=>{"referrer"=>"", "email"=>"3432423"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000156) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '3432423')  +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000399) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000406) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.08549 (11 reqs/sec) | Rendering: 0.07559 (88%) | DB: 0.00096 (1%) | 200 OK [http://tsweb.toa/subscribers] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:03) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000192) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:03) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIgplcnJvcgY6CkB1c2VkewY7B0Y=--32e5febd32d6e2d18764edcacc698f91f3512c48 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:03) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000191) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:03) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing SubscribersController#create (for 10.0.0.194 at 2008-07-10 18:36:13) [POST] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"commit"=>"Ok", "subscriber"=>{"referrer"=>"", "email"=>"3432423@ttt.com"}, "authenticity_token"=>"63b055dfdd7f275fbe4a8bd4788616b64085bc36", "action"=>"create", "controller"=>"subscribers"} + SQL (0.000156) SELECT "email" FROM "subscribers" WHERE ("subscribers".email = '3432423@ttt.com')  + Subscriber Create (0.000220) INSERT INTO "subscribers" ("updated_at", "referrer", "user_agent", "ip", "email", "created_at") VALUES('2008-07-10 14:36:13', '', 'Mozilla/5.0 (X11; U; Linux i686; uk-UA; rv:1.8.1.11) Gecko/20071210 Firefox/2.0.0.11', '10.0.0.194', '3432423@ttt.com', '2008-07-10 14:36:13') +Sent mail to email + +Date: Thu, 10 Jul 2008 18:36:13 +0400 +From: spalsh@test.net +To: email +Subject: Thank you for using our site!!! +Mime-Version: 1.0 +Content-Type: text/plain; charset=utf-8 + +ew +Redirected to http://tsweb.toa:4602/subscribers/new +Completed in 0.11757 (8 reqs/sec) | DB: 0.00038 (0%) | 302 Found [http://tsweb.toa/subscribers] + + +Processing SubscribersController#new (for 10.0.0.194 at 2008-07-10 18:36:13) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdG--4289c41f11070836f83e70e2629d466c9ee1a894 + Parameters: {"action"=>"new", "controller"=>"subscribers"} +Rendering template within layouts/application +Rendering subscribers/new +Rendered layouts/_metadata (0.00003) + EditableArea Load (0.000379) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'header') LIMIT 1 + EditableArea Load (0.000390) SELECT * FROM "editable_areas" WHERE ("editable_areas"."name" = 'footer') LIMIT 1 +Completed in 0.01895 (52 reqs/sec) | Rendering: 0.01000 (52%) | DB: 0.00077 (4%) | 200 OK [http://tsweb.toa/subscribers/new] + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:14) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + Page Load (0.000174) SELECT * FROM "pages" WHERE ("pages"."url" = 'stylesheets/custom.css') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:14) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7BjoLbm90aWNlIg50aGFuayB5b3UGOgpAdXNlZHsGOwdU--b0f2ba3925905bd11c572c5d25d2700c8af31a66 + Parameters: {"action"=>"show", "url"=>["stylesheets", "custom.css"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:14) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + Page Load (0.000184) SELECT * FROM "pages" WHERE ("pages"."url" = 'images/user/0.gif') LIMIT 1 +Rendering template within layouts/application +Rendering errors/404 + + +Processing PagesController#show (for 10.0.0.194 at 2008-07-10 18:36:14) [GET] + Session ID: BAh7BzoMY3NyZl9pZCIlNTAwNGEwOTc2YjVkMzk0ZmY4ZDgxZDNlMzg0MDEz +OTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh +c2h7AAY6CkB1c2VkewA=--879510359d876e404ed6e1a79dc5a9c45f07d104 + Parameters: {"action"=>"show", "url"=>["images", "user", "0.gif"], "controller"=>"pages"} + + +ActionView::MissingTemplate (Missing template errors/404.html.erb in view path /home/nick/projects/splash/app/views): + /vendor/rails/actionpack/lib/action_view/template.rb:91:in `raise_missing_template_exception' + /vendor/rails/actionpack/lib/action_view/template.rb:72:in `set_extension_and_file_name' + /vendor/rails/actionpack/lib/action_view/template.rb:16:in `initialize' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `new' + /vendor/rails/actionpack/lib/action_view/base.rb:318:in `render_file' + /vendor/rails/actionpack/lib/action_view/base.rb:253:in `render' + /vendor/rails/actionpack/lib/action_controller/base.rb:1097:in `render_for_file' + /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' + /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime' + /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' + /lib/flatsoft/rescue_system.rb:29:in `render_404' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `call' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:193:in `rescue_action_with_handler' + /vendor/rails/actionpack/lib/action_controller/rescue.rb:203:in `perform_action_without_caching' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action' + /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' + /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' + /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `send' + /vendor/rails/actionpack/lib/action_controller/base.rb:519:in `process_without_filters' + /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support' + /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process' + /vendor/rails/actionpack/lib/action_controller/base.rb:382:in `process' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:155:in `handle_request' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi' + /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run' + /usr/lib64/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281 + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:503:in `load' + /vendor/rails/railties/lib/commands/servers/mongrel.rb:64 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:355:in `new_constants_in' + /vendor/rails/activesupport/lib/active_support/dependencies.rb:510:in `require' + /vendor/rails/railties/lib/commands/server.rb:49 + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' + /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' + script/server:3 + +Rendering /home/nick/projects/splash/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)