WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000139) SET NAMES 'utf8' SQL (0.000108) SET SQL_AUTO_IS_NULL=0 SQL (0.000215) CREATE DATABASE `Portfolio_development` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000122) SET NAMES 'utf8' SQL (0.000104) SET SQL_AUTO_IS_NULL=0 SQL (0.000190) CREATE DATABASE `Portfolio_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000121) SET NAMES 'utf8' SQL (0.000103) SET SQL_AUTO_IS_NULL=0 SQL (0.000188) CREATE DATABASE `Portfolio_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000130) SET NAMES 'utf8' SQL (0.000106) SET SQL_AUTO_IS_NULL=0 SQL (0.029968) CREATE TABLE `schema_info` (version int(11)) SQL (0.000276) INSERT INTO `schema_info` (version) VALUES(0) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000125) SET NAMES 'utf8' SQL (0.000107) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000409) SELECT version FROM schema_info Migrating to CreateGalleries (1) SQL (0.285188) CREATE TABLE `galleries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `sType` varchar(255) DEFAULT NULL, `engineering_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000385) UPDATE schema_info SET version = 1 SQL (0.000501) SELECT version FROM schema_info Migrating to CreateEngineering (2) SQL (0.003883) CREATE TABLE `engineering` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000298) UPDATE schema_info SET version = 2 SQL (0.000463) SELECT version FROM schema_info Migrating to CreateArtwork (3) SQL (0.003269) CREATE TABLE `artwork` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000331) UPDATE schema_info SET version = 3 SQL (0.000524) SELECT version FROM schema_info Migrating to CreateGalleryFiles (5) SQL (0.004259) CREATE TABLE `gallery_files` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `sDescription` text DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000330) UPDATE schema_info SET version = 5 SQL (0.000484) SELECT version FROM schema_info Migrating to CreateUsers (6) SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users` SQL (0.003969) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `crypted_password` varchar(40) DEFAULT NULL, `salt` varchar(40) DEFAULT NULL, `role` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `remember_token` varchar(255) DEFAULT NULL, `remember_token_expires_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000365) UPDATE schema_info SET version = 6 SQL (0.000538) SELECT version FROM schema_info Migrating to CreateGalleryMedias (7) SQL (0.037230) CREATE TABLE `gallery_medias` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `medianame` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000377) UPDATE schema_info SET version = 7 SQL (0.000518) SELECT version FROM schema_info Migrating to CreateEngineerings (8) SQL (0.004030) CREATE TABLE `engineerings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sName` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000376) UPDATE schema_info SET version = 8 SQL (0.000638) SELECT version FROM schema_info Migrating to CreateArtworks (9) SQL (0.031689) CREATE TABLE `artworks` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sName` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000355) UPDATE schema_info SET version = 9 SQL (0.007790) SELECT * FROM schema_info SQL (0.001111) SHOW TABLES SQL (0.002276) SHOW FIELDS FROM `artwork` SQL (0.002230) describe `artwork` SQL (0.002152) SHOW KEYS FROM `artwork` SQL (0.002237) SHOW FIELDS FROM `artworks` SQL (0.002299) describe `artworks` SQL (0.002328) SHOW KEYS FROM `artworks` SQL (0.002236) SHOW FIELDS FROM `engineering` SQL (0.001999) describe `engineering` SQL (0.002081) SHOW KEYS FROM `engineering` SQL (0.002236) SHOW FIELDS FROM `engineerings` SQL (0.002053) describe `engineerings` SQL (0.001976) SHOW KEYS FROM `engineerings` SQL (0.002744) SHOW FIELDS FROM `galleries` SQL (0.002474) describe `galleries` SQL (0.002050) SHOW KEYS FROM `galleries` SQL (0.001544) SHOW FIELDS FROM `gallery_files` SQL (0.001174) describe `gallery_files` SQL (0.001005) SHOW KEYS FROM `gallery_files` SQL (0.001271) SHOW FIELDS FROM `gallery_medias` SQL (0.001198) describe `gallery_medias` SQL (0.001011) SHOW KEYS FROM `gallery_medias` SQL (0.001620) SHOW FIELDS FROM `users` SQL (0.001532) describe `users` SQL (0.001038) SHOW KEYS FROM `users` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000130) SET NAMES 'utf8' SQL (0.000106) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000405) SELECT version FROM schema_info SQL (0.000201) SELECT version FROM schema_info SQL (0.000194) SELECT version FROM schema_info SQL (0.000193) SELECT version FROM schema_info SQL (0.000213) SELECT version FROM schema_info SQL (0.000193) SELECT version FROM schema_info SQL (0.000237) SELECT * FROM schema_info SQL (0.000522) SHOW TABLES SQL (0.001053) SHOW FIELDS FROM `artwork` SQL (0.000988) describe `artwork` SQL (0.000990) SHOW KEYS FROM `artwork` SQL (0.001047) SHOW FIELDS FROM `artworks` SQL (0.001010) describe `artworks` SQL (0.000959) SHOW KEYS FROM `artworks` SQL (0.000934) SHOW FIELDS FROM `engineering` SQL (0.000939) describe `engineering` SQL (0.000974) SHOW KEYS FROM `engineering` SQL (0.001015) SHOW FIELDS FROM `engineerings` SQL (0.001015) describe `engineerings` SQL (0.000967) SHOW KEYS FROM `engineerings` SQL (0.001153) SHOW FIELDS FROM `galleries` SQL (0.001138) describe `galleries` SQL (0.000962) SHOW KEYS FROM `galleries` SQL (0.001143) SHOW FIELDS FROM `gallery_files` SQL (0.001145) describe `gallery_files` SQL (0.000996) SHOW KEYS FROM `gallery_files` SQL (0.001156) SHOW FIELDS FROM `gallery_medias` SQL (0.001172) describe `gallery_medias` SQL (0.000960) SHOW KEYS FROM `gallery_medias` SQL (0.001368) SHOW FIELDS FROM `users` SQL (0.001349) describe `users` SQL (0.000963) SHOW KEYS FROM `users` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000132) SET NAMES 'utf8' SQL (0.000107) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000286) SELECT version FROM schema_info SQL (0.000199) SELECT version FROM schema_info SQL (0.000195) SELECT version FROM schema_info SQL (0.000193) SELECT version FROM schema_info SQL (0.000193) SELECT version FROM schema_info SQL (0.000194) SELECT version FROM schema_info SQL (0.000234) SELECT * FROM schema_info SQL (0.000541) SHOW TABLES SQL (0.001037) SHOW FIELDS FROM `artwork` SQL (0.000958) describe `artwork` SQL (0.000986) SHOW KEYS FROM `artwork` SQL (0.001027) SHOW FIELDS FROM `artworks` SQL (0.001005) describe `artworks` SQL (0.000979) SHOW KEYS FROM `artworks` SQL (0.000947) SHOW FIELDS FROM `engineering` SQL (0.000934) describe `engineering` SQL (0.000964) SHOW KEYS FROM `engineering` SQL (0.001011) SHOW FIELDS FROM `engineerings` SQL (0.001007) describe `engineerings` SQL (0.000964) SHOW KEYS FROM `engineerings` SQL (0.001187) SHOW FIELDS FROM `galleries` SQL (0.001142) describe `galleries` SQL (0.000980) SHOW KEYS FROM `galleries` SQL (0.001143) SHOW FIELDS FROM `gallery_files` SQL (0.001136) describe `gallery_files` SQL (0.000953) SHOW KEYS FROM `gallery_files` SQL (0.001147) SHOW FIELDS FROM `gallery_medias` SQL (0.001148) describe `gallery_medias` SQL (0.000965) SHOW KEYS FROM `gallery_medias` SQL (0.001356) SHOW FIELDS FROM `users` SQL (0.001339) describe `users` SQL (0.000968) SHOW KEYS FROM `users` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000134) SET NAMES 'utf8' SQL (0.000106) SET SQL_AUTO_IS_NULL=0 SQL (0.133977) DROP DATABASE IF EXISTS `Portfolio_development` SQL (0.000386) DROP DATABASE IF EXISTS `Portfolio_production` SQL (0.000312) DROP DATABASE IF EXISTS `Portfolio_test` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000132) SET NAMES 'utf8' SQL (0.000115) SET SQL_AUTO_IS_NULL=0 SQL (0.000323) CREATE DATABASE `Portfolio_development` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000149) SET NAMES 'utf8' SQL (0.000106) SET SQL_AUTO_IS_NULL=0 SQL (0.000208) CREATE DATABASE `Portfolio_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000123) SET NAMES 'utf8' SQL (0.000105) SET SQL_AUTO_IS_NULL=0 SQL (0.000199) CREATE DATABASE `Portfolio_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000132) SET NAMES 'utf8' SQL (0.000107) SET SQL_AUTO_IS_NULL=0 SQL (0.002368) CREATE TABLE `schema_info` (version int(11)) SQL (0.000266) INSERT INTO `schema_info` (version) VALUES(0) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000365) SELECT version FROM schema_info Migrating to CreateGalleries (1) SQL (0.003709) CREATE TABLE `galleries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `sType` varchar(255) DEFAULT NULL, `engineering_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000184) UPDATE schema_info SET version = 1 SQL (0.000259) SELECT version FROM schema_info Migrating to CreateEngineering (2) SQL (0.003569) CREATE TABLE `engineering` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000165) UPDATE schema_info SET version = 2 SQL (0.000263) SELECT version FROM schema_info Migrating to CreateArtwork (3) SQL (0.002568) CREATE TABLE `artwork` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000268) UPDATE schema_info SET version = 3 SQL (0.000294) SELECT version FROM schema_info Migrating to CreateGalleryFiles (5) SQL (0.003357) CREATE TABLE `gallery_files` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `sDescription` text DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000174) UPDATE schema_info SET version = 5 SQL (0.000262) SELECT version FROM schema_info Migrating to CreateUsers (6) SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users` SQL (0.002843) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `crypted_password` varchar(40) DEFAULT NULL, `salt` varchar(40) DEFAULT NULL, `role` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `remember_token` varchar(255) DEFAULT NULL, `remember_token_expires_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000230) UPDATE schema_info SET version = 6 SQL (0.000265) SELECT version FROM schema_info Migrating to CreateGalleryMedias (7) SQL (0.066645) CREATE TABLE `gallery_medias` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `medianame` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000512) UPDATE schema_info SET version = 7 SQL (0.000446) SELECT * FROM schema_info SQL (0.000560) SHOW TABLES SQL (0.001391) SHOW FIELDS FROM `artwork` SQL (0.001272) describe `artwork` SQL (0.001204) SHOW KEYS FROM `artwork` SQL (0.001343) SHOW FIELDS FROM `engineering` SQL (0.001248) describe `engineering` SQL (0.001187) SHOW KEYS FROM `engineering` SQL (0.001609) SHOW FIELDS FROM `galleries` SQL (0.001507) describe `galleries` SQL (0.001253) SHOW KEYS FROM `galleries` SQL (0.001971) SHOW FIELDS FROM `gallery_files` SQL (0.002208) describe `gallery_files` SQL (0.001636) SHOW KEYS FROM `gallery_files` SQL (0.002208) SHOW FIELDS FROM `gallery_medias` SQL (0.001926) describe `gallery_medias` SQL (0.001871) SHOW KEYS FROM `gallery_medias` SQL (0.002533) SHOW FIELDS FROM `users` SQL (0.002212) describe `users` SQL (0.001527) SHOW KEYS FROM `users` Processing Base#index (for 127.0.0.1 at 2008-06-22 17:54:25) [GET] Session ID: 29decda4ffd466be52156e7b97521a0f Parameters: {} NameError (uninitialized constant ApplicationController::AuthenticatedSystem): /vendor/rails/activesupport/lib/active_support/dependencies.rb:478:in `const_missing' /app/controllers/application.rb:6 /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:202:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:94:in `require_or_load' /vendor/rails/activesupport/lib/active_support/dependencies.rb:60:in `depend_on' /vendor/rails/activesupport/lib/active_support/dependencies.rb:442:in `require_dependency' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:141:in `prepare_application' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:178:in `send!' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:178:in `run_callbacks' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:175:in `each' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:175:in `send!' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:175:in `run_callbacks' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:114:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing AccountController#index (for 127.0.0.1 at 2008-06-22 17:56:09) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {"action"=>"index", "controller"=>"account"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000233) SET NAMES 'utf8' SQL (0.000206) SET SQL_AUTO_IS_NULL=0 ActionController::MissingTemplate (Missing template account/index.html.erb in view path /home/falcon-/Rails/Portfolio/app/views): /vendor/rails/actionpack/lib/action_controller/base.rb:1269:in `assert_existence_of_template_file' /vendor/rails/actionpack/lib/action_controller/base.rb:1098:in `render_for_file' /vendor/rails/actionpack/lib/action_controller/base.rb:836:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/layout.rb:270:in `render_without_benchmark' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /vendor/rails/actionpack/lib/action_controller/base.rb:1153:in `default_render' /vendor/rails/actionpack/lib/action_controller/base.rb:1159:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing AccountController#signup (for 127.0.0.1 at 2008-06-22 17:56:14) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {"action"=>"signup", "controller"=>"account"} User Columns (0.001869) SHOW FIELDS FROM `users` SQL (0.000447) SELECT count(*) AS count_all FROM `users`  ActionController::MissingTemplate (Missing template account/signup.html.erb in view path /home/falcon-/Rails/Portfolio/app/views): /vendor/rails/actionpack/lib/action_controller/base.rb:1269:in `assert_existence_of_template_file' /vendor/rails/actionpack/lib/action_controller/base.rb:1098:in `render_for_file' /vendor/rails/actionpack/lib/action_controller/base.rb:836:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/layout.rb:270:in `render_without_benchmark' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /vendor/rails/actionpack/lib/action_controller/base.rb:1153:in `default_render' /vendor/rails/actionpack/lib/action_controller/base.rb:1159:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing AccountController#signup (for 127.0.0.1 at 2008-06-22 17:57:22) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {"action"=>"signup", "controller"=>"account"} User Columns (0.001758) SHOW FIELDS FROM `users` SQL (0.000243) SELECT count(*) AS count_all FROM `users`  Rendering account/signup Completed in 0.01851 (54 reqs/sec) | Rendering: 0.00645 (34%) | DB: 0.00200 (10%) | 200 OK [http://127.0.0.1/account/signup] Processing AccountController#signup (for 127.0.0.1 at 2008-06-22 17:57:42) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlYmZiZWQ1YTNkNjVmYTkwOGVjNGYxYzMwYjNkNzg2%0AZDQiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--d03f23b97d3e0d497c8b6eef13b161dec15880b6 Parameters: {"user"=>{"password_confirmation"=>"shadow7", "role"=>"admin", "login"=>"smbarne", "password"=>"shadow7", "email"=>"smbarne@uark.com"}, "commit"=>"Sign up", "authenticity_token"=>"ad38bf028a5097ce3582d5ae8002680c0909dec0", "action"=>"signup", "controller"=>"account"} User Columns (0.001933) SHOW FIELDS FROM `users` SQL (0.000257) SELECT count(*) AS count_all FROM `users`  SQL (0.000160) BEGIN User Load (0.020215) SELECT * FROM `users` WHERE (LOWER(users.login) = 'smbarne') LIMIT 1 User Load (0.001730) SELECT * FROM `users` WHERE (LOWER(users.email) = 'smbarne@uark.com') LIMIT 1 User Create (0.000614) INSERT INTO `users` (`salt`, `updated_at`, `crypted_password`, `remember_token_expires_at`, `role`, `remember_token`, `login`, `created_at`, `email`) VALUES('5ddbee3fe601e49bfe8181e4798cda5913590d3e', '2008-06-22 17:57:42', '358a51cb23f6e70c3a32f8f1a2628032fbf9ecdb', NULL, 'admin', NULL, 'smbarne', '2008-06-22 17:57:42', 'smbarne@uark.com') SQL (0.002770) COMMIT Redirected to http://127.0.0.1:3000/account Completed in 0.04507 (22 reqs/sec) | DB: 0.02768 (61%) | 302 Found [http://127.0.0.1/account/signup] Processing AccountController#index (for 127.0.0.1 at 2008-06-22 17:57:42) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiViZmJlZDVhM2Q2%0ANWZhOTA4ZWM0ZjFjMzBiM2Q3ODZkNCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiG1RoYW5rcyBmb3Ig%0Ac2lnbmluZyB1cCEGOgpAdXNlZHsGOwlU--481adba059eead1387316124c7b199a1c084a33e Parameters: {"action"=>"index", "controller"=>"account"} Rendering account/index Completed in 0.00816 (122 reqs/sec) | Rendering: 0.00539 (66%) | DB: 0.00000 (0%) | 200 OK [http://127.0.0.1/account] Processing AccountController#index (for 127.0.0.1 at 2008-06-22 17:57:50) [POST] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiViZmJlZDVhM2Q2%0ANWZhOTA4ZWM0ZjFjMzBiM2Q3ODZkNCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--58647300f170934583bf72aa75ff6731b8f20e09 Parameters: {"commit"=>"Log in", "authenticity_token"=>"ad38bf028a5097ce3582d5ae8002680c0909dec0", "action"=>"index", "controller"=>"account", "password"=>"shadow7", "login"=>"smbarne"} User Columns (0.001934) SHOW FIELDS FROM `users` User Load (0.001052) SELECT * FROM `users` WHERE (`users`.`login` = 'smbarne') LIMIT 1 Redirected to http://127.0.0.1:3000/main/main Completed in 0.01674 (59 reqs/sec) | DB: 0.00299 (17%) | 302 Found [http://127.0.0.1/account] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 17:57:50) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiViZmJlZDVhM2Q2%0ANWZhOTA4ZWM0ZjFjMzBiM2Q3ODZkNCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiG0xvZ2dlZCBpbiBz%0AdWNjZXNzZnVsbHkGOgpAdXNlZHsGOwlU--e4d8c571b6b9e750c1381a42b9daf4ae1f0d919a Parameters: {} ActionController::RoutingError (No route matches "/main/main" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 18:01:45) [POST] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiViZmJlZDVhM2Q2%0ANWZhOTA4ZWM0ZjFjMzBiM2Q3ODZkNCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--58647300f170934583bf72aa75ff6731b8f20e09 Parameters: {"commit"=>"Log in", "authenticity_token"=>"ad38bf028a5097ce3582d5ae8002680c0909dec0", "action"=>"index", "controller"=>"account", "password"=>"shadow7", "login"=>"smbarne"} SyntaxError (/home/falcon-/Rails/Portfolio/app/controllers/account_controller.rb:17: syntax error, unexpected ':', expecting ')' redirect_back_or_default(: '/' ) ^ /home/falcon-/Rails/Portfolio/app/controllers/account_controller.rb:17: syntax error, unexpected ')', expecting kEND): /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:202:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:94:in `require_or_load' /vendor/rails/activesupport/lib/active_support/dependencies.rb:248:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/inflector.rb:257:in `constantize' /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /vendor/rails/actionpack/lib/action_controller/routing.rb:1426:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing AccountController#index (for 127.0.0.1 at 2008-06-22 18:01:58) [POST] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiViZmJlZDVhM2Q2NWZhOTA4ZWM0ZjFj%0AMzBiM2Q3ODZkNDoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--96190541501e2e71e7f5a5baa658136c30cfcefc Parameters: {"commit"=>"Log in", "authenticity_token"=>"ad38bf028a5097ce3582d5ae8002680c0909dec0", "action"=>"index", "controller"=>"account", "password"=>"shadow7", "login"=>"smbarne"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000262) SET NAMES 'utf8' SQL (0.000232) SET SQL_AUTO_IS_NULL=0 User Columns (0.003489) SHOW FIELDS FROM `users` User Load (0.001194) SELECT * FROM `users` WHERE (`users`.`login` = 'smbarne') LIMIT 1 Redirected to http://127.0.0.1:3000/ Completed in 0.02876 (34 reqs/sec) | DB: 0.00518 (17%) | 302 Found [http://127.0.0.1/account] Processing AccountController#index (for 127.0.0.1 at 2008-06-22 18:04:35) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiViZmJlZDVhM2Q2NWZhOTA4ZWM0ZjFj%0AMzBiM2Q3ODZkNDoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiG0xvZ2dlZCBpbiBz%0AdWNjZXNzZnVsbHkGOgpAdXNlZHsGOwlU--36dad49aa40ccae46dde128155305d75ab103aa6 Parameters: {"action"=>"index", "controller"=>"account"} Rendering account/index Completed in 0.07375 (13 reqs/sec) | Rendering: 0.06822 (92%) | DB: 0.00000 (0%) | 200 OK [http://127.0.0.1/account/] Processing AccountController#index (for 127.0.0.1 at 2008-06-22 18:06:37) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiViZmJlZDVhM2Q2NWZhOTA4ZWM0ZjFj%0AMzBiM2Q3ODZkNDoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--96190541501e2e71e7f5a5baa658136c30cfcefc Parameters: {"action"=>"index", "controller"=>"account"} Rendering account/index Completed in 0.01572 (63 reqs/sec) | Rendering: 0.01023 (65%) | DB: 0.00000 (0%) | 200 OK [http://127.0.0.1/account/] Processing AccountController#logout (for 127.0.0.1 at 2008-06-22 18:06:40) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiViZmJlZDVhM2Q2NWZhOTA4ZWM0ZjFj%0AMzBiM2Q3ODZkNDoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--96190541501e2e71e7f5a5baa658136c30cfcefc Parameters: {"action"=>"logout", "controller"=>"account"} User Columns (0.003041) SHOW FIELDS FROM `users` User Load (0.037812) SELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1 SQL (0.000263) BEGIN User Update (0.000745) UPDATE `users` SET `created_at` = '2008-06-22 17:57:42', `login` = 'smbarne', `crypted_password` = '358a51cb23f6e70c3a32f8f1a2628032fbf9ecdb', `role` = 'admin', `remember_token_expires_at` = NULL, `salt` = '5ddbee3fe601e49bfe8181e4798cda5913590d3e', `remember_token` = NULL, `email` = 'smbarne@uark.com', `updated_at` = '2008-06-22 18:06:40' WHERE `id` = 1 SQL (0.006272) COMMIT Cookie set: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT Redirected to http://127.0.0.1:3000/account Completed in 0.07602 (13 reqs/sec) | DB: 0.04813 (63%) | 302 Found [http://127.0.0.1/account/logout] Processing AccountController#index (for 127.0.0.1 at 2008-06-22 18:06:40) [GET] Session ID: BAh7BzoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6%0ARmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiHllvdSBoYXZlIGJlZW4gbG9n%0AZ2VkIG91dC4GOgpAdXNlZHsGOwdU--bd2599702fb24d0473500f04034c56b06111af14 Parameters: {"action"=>"index", "controller"=>"account"} Rendering account/index Completed in 0.00946 (105 reqs/sec) | Rendering: 0.00417 (44%) | DB: 0.00000 (0%) | 200 OK [http://127.0.0.1/account] Processing AccountController#index (for 127.0.0.1 at 2008-06-22 18:06:45) [POST] Session ID: BAh7CDoMY3NyZl9pZCIlMzdlMDZkMjY0MTk3ZTJiMGQ0MDc4YThjYTNjMTlk%0AZTY6DnJldHVybl90bzAiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZs%0AYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA%3D--5ccde826b926d6325840aa759b3f58d76560b2b0 Parameters: {"commit"=>"Log in", "authenticity_token"=>"15ee1c2ee03d7bcc2335f3f4e10edbf71c9d56d8", "action"=>"index", "controller"=>"account", "password"=>"shadow7", "login"=>"smbarne"} User Columns (0.003055) SHOW FIELDS FROM `users` User Load (0.001779) SELECT * FROM `users` WHERE (`users`.`login` = 'smbarne') LIMIT 1 Redirected to http://127.0.0.1:3000/ Completed in 0.02701 (37 reqs/sec) | DB: 0.00483 (17%) | 302 Found [http://127.0.0.1/account] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 18:10:05) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiG0xvZ2dlZCBpbiBz%0AdWNjZXNzZnVsbHkGOgpAdXNlZHsGOwlU--a83cf0cd65fb87b17963d02e9bd8ddb32cbbc971 Parameters: {} ActionController::RoutingError (No route matches "/artwork" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 18:10:16) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {} ActionController::RoutingError (No route matches "/Artwork" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 18:12:06) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {"action"=>"index", "controller"=>"artwork"} SyntaxError (/home/falcon-/Rails/Portfolio/app/controllers/artwork_controller.rb:156: syntax error, unexpected $end, expecting kEND): /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:202:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:94:in `require_or_load' /vendor/rails/activesupport/lib/active_support/dependencies.rb:248:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/inflector.rb:257:in `constantize' /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /vendor/rails/actionpack/lib/action_controller/routing.rb:1426:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 18:14:57) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"artwork"} SyntaxError (/home/falcon-/Rails/Portfolio/app/controllers/artwork_controller.rb:136: syntax error, unexpected $end, expecting kEND): /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:202:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:94:in `require_or_load' /vendor/rails/activesupport/lib/active_support/dependencies.rb:248:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/inflector.rb:257:in `constantize' /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /vendor/rails/actionpack/lib/action_controller/routing.rb:1426:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ArtworkController#index (for 127.0.0.1 at 2008-06-22 18:15:45) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"artwork"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000246) SET NAMES 'utf8' SQL (0.000208) SET SQL_AUTO_IS_NULL=0 Rendering template within layouts/main Rendering artwork/index Completed in 0.14266 (7 reqs/sec) | Rendering: 0.05376 (37%) | DB: 0.00045 (0%) | 200 OK [http://127.0.0.1/Artwork] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 18:15:45) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 20:40:48) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"gallery"} SyntaxError (/home/falcon-/Rails/Portfolio/app/controllers/gallery_controller.rb:141: syntax error, unexpected kELSE, expecting ')' /home/falcon-/Rails/Portfolio/app/controllers/gallery_controller.rb:143: syntax error, unexpected kEND, expecting ')' /home/falcon-/Rails/Portfolio/app/controllers/gallery_controller.rb:155: syntax error, unexpected $end, expecting kEND): /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:202:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:94:in `require_or_load' /vendor/rails/activesupport/lib/active_support/dependencies.rb:248:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/inflector.rb:257:in `constantize' /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /vendor/rails/actionpack/lib/action_controller/routing.rb:1426:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 20:31:03) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"gallery"} SyntaxError (/home/falcon-/Rails/Portfolio/app/controllers/gallery_controller.rb:141: syntax error, unexpected kELSE, expecting ')' /home/falcon-/Rails/Portfolio/app/controllers/gallery_controller.rb:143: syntax error, unexpected kEND, expecting ')' /home/falcon-/Rails/Portfolio/app/controllers/gallery_controller.rb:155: syntax error, unexpected $end, expecting kEND): /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:202:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:94:in `require_or_load' /vendor/rails/activesupport/lib/active_support/dependencies.rb:248:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/inflector.rb:257:in `constantize' /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /vendor/rails/actionpack/lib/action_controller/routing.rb:1426:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#index (for 127.0.0.1 at 2008-06-24 20:31:24) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"gallery"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.023853) SET NAMES 'utf8' SQL (0.009994) SET SQL_AUTO_IS_NULL=0 Rendering template within layouts/main ActionController::MissingTemplate (Missing template gallery/index.html.erb in view path /home/falcon-/Rails/Portfolio/app/views): /vendor/rails/actionpack/lib/action_controller/base.rb:1269:in `assert_existence_of_template_file' /vendor/rails/actionpack/lib/action_controller/base.rb:1098:in `render_for_file' /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' /app/controllers/gallery_controller.rb:6:in `index' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#index (for 127.0.0.1 at 2008-06-24 20:31:32) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"gallery"} Rendering template within layouts/main ActionController::MissingTemplate (Missing template gallery/index.html.erb in view path /home/falcon-/Rails/Portfolio/app/views): /vendor/rails/actionpack/lib/action_controller/base.rb:1269:in `assert_existence_of_template_file' /vendor/rails/actionpack/lib/action_controller/base.rb:1098:in `render_for_file' /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' /app/controllers/gallery_controller.rb:6:in `index' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 20:31:45) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"artwork"} SQL (0.067686) SHOW TABLES NoMethodError (undefined method `galleries' for Artwork(Table doesn't exist):Class): /vendor/rails/activerecord/lib/active_record/base.rb:1532:in `method_missing' /app/controllers/artwork_controller.rb:6:in `index' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 20:32:29) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"artwork"} SQL (0.000791) SHOW TABLES NoMethodError (undefined method `galleries' for Artwork(Table doesn't exist):Class): /vendor/rails/activerecord/lib/active_record/base.rb:1532:in `method_missing' /app/controllers/artwork_controller.rb:6:in `index' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 20:32:52) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"artwork"} SQL (0.000608) SHOW TABLES NoMethodError (undefined method `Galleries' for Artwork(Table doesn't exist):Class): /vendor/rails/activerecord/lib/active_record/base.rb:1532:in `method_missing' /app/controllers/artwork_controller.rb:6:in `index' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000152) SET NAMES 'utf8' SQL (0.000120) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.020067) SELECT version FROM schema_info SQL (0.000227) SELECT version FROM schema_info SQL (0.000198) SELECT version FROM schema_info SQL (0.000206) SELECT version FROM schema_info SQL (0.000197) SELECT version FROM schema_info SQL (0.000194) SELECT version FROM schema_info SQL (0.000357) SELECT * FROM schema_info SQL (0.000464) SHOW TABLES SQL (0.001057) SHOW FIELDS FROM `artwork` SQL (0.000952) describe `artwork` SQL (0.023031) SHOW KEYS FROM `artwork` SQL (0.001038) SHOW FIELDS FROM `engineering` SQL (0.000942) describe `engineering` SQL (0.000982) SHOW KEYS FROM `engineering` SQL (0.001186) SHOW FIELDS FROM `galleries` SQL (0.001139) describe `galleries` SQL (0.000981) SHOW KEYS FROM `galleries` SQL (0.001156) SHOW FIELDS FROM `gallery_files` SQL (0.001147) describe `gallery_files` SQL (0.000964) SHOW KEYS FROM `gallery_files` SQL (0.001136) SHOW FIELDS FROM `gallery_medias` SQL (0.001151) describe `gallery_medias` SQL (0.000966) SHOW KEYS FROM `gallery_medias` SQL (0.001374) SHOW FIELDS FROM `users` SQL (0.001620) describe `users` SQL (0.001097) SHOW KEYS FROM `users` Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 20:34:46) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"artwork"} SQL (0.000625) SHOW TABLES NoMethodError (undefined method `galleries' for Artwork(Table doesn't exist):Class): /vendor/rails/activerecord/lib/active_record/base.rb:1532:in `method_missing' /app/controllers/artwork_controller.rb:6:in `index' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 20:35:03) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"artwork"} Rendering template within layouts/main Rendering artwork/index Completed in 0.25040 (3 reqs/sec) | Rendering: 0.24722 (98%) | DB: 0.06971 (27%) | 200 OK [http://127.0.0.1/Artwork/] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 20:35:04) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:38:22) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} SyntaxError (/home/falcon-/Rails/Portfolio/app/models/gallery.rb:2: syntax error, unexpected ':', expecting kEND has_many: :gallery_files ^): /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /vendor/rails/activesupport/lib/active_support/dependencies.rb:203:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:202:in `load_file' /vendor/rails/activesupport/lib/active_support/dependencies.rb:94:in `require_or_load' /vendor/rails/activesupport/lib/active_support/dependencies.rb:248:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:469:in `const_missing' /app/controllers/gallery_controller.rb:14:in `new' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:38:54) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} Gallery Columns (0.001641) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering gallery/new ActionView::TemplateError (Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id) on line #5 of gallery/new.html.erb: 2: 3: <%= error_messages_for :setup %> 4: 5: <% form_for(@setup, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| %> 6:

7: Title
8: <%= f.text_field :sName, :class=>"textbox" %> vendor/rails/actionpack/lib/action_controller/record_identifier.rb:66:in `dom_id' vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb:16:in `dom_id' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:195:in `apply_form_for_options!' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:179:in `form_for' app/views/gallery/new.html.erb:5:in `_run_erb_47app47views47gallery47new46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:16:in `new' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:47:01) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} Gallery Columns (0.001564) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering gallery/new ActionView::TemplateError (undefined method `galleries_path' for #) on line #5 of gallery/new.html.erb: 2: 3: <%= error_messages_for :setup %> 4: 5: <% form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| %> 6:

7: Title
8: <%= f.text_field :sTitle, :class=>"textbox" %> vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `send!' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `polymorphic_url' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:31:in `polymorphic_path' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:200:in `apply_form_for_options!' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:179:in `form_for' app/views/gallery/new.html.erb:5:in `_run_erb_47app47views47gallery47new46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:16:in `new' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:47:31) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} Gallery Columns (0.001483) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering gallery/new ActionView::TemplateError (undefined method `galleries_path' for #) on line #5 of gallery/new.html.erb: 2: 3: <%= error_messages_for :gallery %> 4: 5: <% form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| %> 6:

7: Title
8: <%= f.text_field :sTitle, :class=>"textbox" %> vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `send!' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `polymorphic_url' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:31:in `polymorphic_path' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:200:in `apply_form_for_options!' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:179:in `form_for' app/views/gallery/new.html.erb:5:in `_run_erb_47app47views47gallery47new46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:16:in `new' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:50:11) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} Gallery Columns (0.001470) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering gallery/new ActionView::TemplateError (undefined method `galleries_path' for #) on line #5 of gallery/new.html.erb: 2: 3: <%= error_messages_for :gallery %> 4: 5: <% form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| %> 6:

7: Title
8: <%= f.text_field :sTitle, :class=>"textbox" %> vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `send!' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `polymorphic_url' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:31:in `polymorphic_path' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:200:in `apply_form_for_options!' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:179:in `form_for' app/views/gallery/new.html.erb:5:in `_run_erb_47app47views47gallery47new46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:16:in `new' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:56:23) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000148) SET NAMES 'utf8' SQL (0.000124) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.001551) SHOW FIELDS FROM `galleries` Rendering template within layouts/main ActionController::MissingTemplate (Missing template gallery/new.html.erb in view path /home/falcon-/Rails/Portfolio/app/views): /vendor/rails/actionpack/lib/action_controller/base.rb:1269:in `assert_existence_of_template_file' /vendor/rails/actionpack/lib/action_controller/base.rb:1098:in `render_for_file' /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' /app/controllers/gallery_controller.rb:16:in `new' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 20:56:34) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {} ActionController::RoutingError (No route matches "/Galleries/new" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 20:57:34) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {} ActionController::RoutingError (No route matches "/Galleries/new" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleryController#index (for 127.0.0.1 at 2008-06-24 20:58:27) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"gallery"} Rendering template within layouts/main ActionController::MissingTemplate (Missing template gallery/index.html.erb in view path /home/falcon-/Rails/Portfolio/app/views): /vendor/rails/actionpack/lib/action_controller/base.rb:1269:in `assert_existence_of_template_file' /vendor/rails/actionpack/lib/action_controller/base.rb:1098:in `render_for_file' /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' /app/controllers/gallery_controller.rb:6:in `index' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:58:33) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} Gallery Columns (0.001611) SHOW FIELDS FROM `galleries` Rendering template within layouts/main ActionController::MissingTemplate (Missing template gallery/new.html.erb in view path /home/falcon-/Rails/Portfolio/app/views): /vendor/rails/actionpack/lib/action_controller/base.rb:1269:in `assert_existence_of_template_file' /vendor/rails/actionpack/lib/action_controller/base.rb:1098:in `render_for_file' /vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' /vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' /vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' /app/controllers/gallery_controller.rb:16:in `new' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 20:58:53) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} Gallery Columns (0.001468) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering gallery/new ActionView::TemplateError (undefined method `galleries_path' for #) on line #5 of gallery/new.html.erb: 2: 3: <%= error_messages_for :gallery %> 4: 5: <% form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| %> 6:

7: Title
8: <%= f.text_field :sTitle, :class=>"textbox" %> vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `send!' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `polymorphic_url' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:31:in `polymorphic_path' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:200:in `apply_form_for_options!' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:179:in `form_for' app/views/gallery/new.html.erb:5:in `_run_erb_47app47views47gallery47new46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:16:in `new' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ApplicationController#new (for 127.0.0.1 at 2008-06-24 21:01:24) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} LoadError (Expected /home/falcon-/Rails/Portfolio/app/controllers/gallery_controller.rb to define GalleryController): /vendor/rails/activesupport/lib/active_support/dependencies.rb:249:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/inflector.rb:257:in `constantize' /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /vendor/rails/actionpack/lib/action_controller/routing.rb:1426:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:01:33) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {} ActionController::RoutingError (No route matches "/Galleries/new" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#new (for 127.0.0.1 at 2008-06-24 21:02:16) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"gallery"} NameError (uninitialized constant GalleryController): /vendor/rails/activesupport/lib/active_support/dependencies.rb:266:in `load_missing_constant' /vendor/rails/activesupport/lib/active_support/dependencies.rb:453:in `const_missing' /vendor/rails/activesupport/lib/active_support/dependencies.rb:465:in `const_missing' /vendor/rails/activesupport/lib/active_support/inflector.rb:257:in `constantize' /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:148:in `constantize' /vendor/rails/actionpack/lib/action_controller/routing.rb:1426:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:02:36) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000145) SET NAMES 'utf8' SQL (0.000122) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.001559) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new ActionView::TemplateError (undefined method `galleries_path' for #) on line #5 of galleries/new.html.erb: 2: 3: <%= error_messages_for :gallery %> 4: 5: <% form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| %> 6:

7: Title
8: <%= f.text_field :sTitle, :class=>"textbox" %> vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `send!' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `polymorphic_url' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:31:in `polymorphic_path' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:200:in `apply_form_for_options!' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:179:in `form_for' app/views/galleries/new.html.erb:5:in `_run_erb_47app47views47galleries47new46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:15:in `new' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#index (for 127.0.0.1 at 2008-06-24 21:04:04) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"gallery"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000148) SET NAMES 'utf8' SQL (0.000122) SET SQL_AUTO_IS_NULL=0 Rendering template within layouts/main Rendering gallery/index ActionView::TemplateError (You have a nil object when you didn't expect it! You might have expected an instance of Array. The error occurred while evaluating nil.each) on line #7 of gallery/index.html.erb: 4: 5: 6: 7: <% for gallery in @galleries %> 8: 9: <%= link_to 'Show', gallery %> 10: <%= link_to 'Edit', edit_gallery_path(gallery) %> app/views/gallery/index.html.erb:7:in `_run_erb_47app47views47gallery47index46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:6:in `index' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleryController#index (for 127.0.0.1 at 2008-06-24 21:05:16) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {"action"=>"index", "controller"=>"gallery"} Gallery Load (0.000826) SELECT * FROM `galleries`  Rendering template within layouts/main Rendering gallery/index ActionView::TemplateError (undefined local variable or method `new_gallery_path' for #) on line #18 of gallery/index.html.erb: 15: 16:
17: 18: <%= link_to 'New gallery', new_gallery_path %> app/views/gallery/index.html.erb:18:in `_run_erb_47app47views47gallery47index46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:8:in `index' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:09:31) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%0AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvMA%3D%3D--ea985f11cf83fe69db203413ad679ff94176d17c Parameters: {} ActionController::RoutingError (No route matches "/Test1/new" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:09:48) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {} ActionController::RoutingError (No route matches "/test1/new" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing Test1sController#new (for 127.0.0.1 at 2008-06-24 21:10:10) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {"action"=>"new", "controller"=>"test1s"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000157) SET NAMES 'utf8' SQL (0.000124) SET SQL_AUTO_IS_NULL=0 Test1 Columns (0.000000) Mysql::Error: #42S02Table 'Portfolio_development.test1s' doesn't exist: SHOW FIELDS FROM `test1s` ActiveRecord::StatementInvalid (Mysql::Error: #42S02Table 'Portfolio_development.test1s' doesn't exist: SHOW FIELDS FROM `test1s`): /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb:150:in `log' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:281:in `execute' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:411:in `columns' /vendor/rails/activerecord/lib/active_record/base.rb:1080:in `columns' /vendor/rails/activerecord/lib/active_record/base.rb:2363:in `attributes_from_column_definition_without_lock' /vendor/rails/activerecord/lib/active_record/locking/optimistic.rb:55:in `attributes_from_column_definition' /vendor/rails/activerecord/lib/active_record/base.rb:1922:in `initialize' /app/controllers/test1s_controller.rb:27:in `new' /app/controllers/test1s_controller.rb:27:in `new' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' /vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000134) SET NAMES 'utf8' SQL (0.000107) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000284) SELECT version FROM schema_info SQL (0.000199) SELECT version FROM schema_info SQL (0.000211) SELECT version FROM schema_info SQL (0.000197) SELECT version FROM schema_info SQL (0.000193) SELECT version FROM schema_info SQL (0.000195) SELECT version FROM schema_info SQL (0.000198) SELECT version FROM schema_info Migrating to CreateTest1s (8) SQL (17.619917) CREATE TABLE `test1s` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.019888) UPDATE schema_info SET version = 8 SQL (0.000470) SELECT * FROM schema_info SQL (0.000513) SHOW TABLES SQL (0.001115) SHOW FIELDS FROM `artwork` SQL (0.001167) describe `artwork` SQL (0.001042) SHOW KEYS FROM `artwork` SQL (0.001287) SHOW FIELDS FROM `engineering` SQL (0.001135) describe `engineering` SQL (0.001074) SHOW KEYS FROM `engineering` SQL (0.001327) SHOW FIELDS FROM `galleries` SQL (0.001406) describe `galleries` SQL (0.001188) SHOW KEYS FROM `galleries` SQL (0.002005) SHOW FIELDS FROM `gallery_files` SQL (0.001460) describe `gallery_files` SQL (0.001194) SHOW KEYS FROM `gallery_files` SQL (0.001300) SHOW FIELDS FROM `gallery_medias` SQL (0.001261) describe `gallery_medias` SQL (0.001195) SHOW KEYS FROM `gallery_medias` SQL (0.001229) SHOW FIELDS FROM `test1s` SQL (0.001125) describe `test1s` SQL (0.001054) SHOW KEYS FROM `test1s` SQL (0.001485) SHOW FIELDS FROM `users` SQL (0.001636) describe `users` SQL (0.001062) SHOW KEYS FROM `users` Processing Test1sController#new (for 127.0.0.1 at 2008-06-24 21:10:54) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {"action"=>"new", "controller"=>"test1s"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000158) SET NAMES 'utf8' SQL (0.000138) SET SQL_AUTO_IS_NULL=0 Test1 Columns (0.001117) SHOW FIELDS FROM `test1s` Rendering template within layouts/test1s Rendering test1s/new Completed in 0.01262 (79 reqs/sec) | Rendering: 0.00448 (35%) | DB: 0.00141 (11%) | 200 OK [http://127.0.0.1/test1s/new] Processing GalleryController#new (for 127.0.0.1 at 2008-06-24 21:14:28) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {"action"=>"new", "controller"=>"gallery"} Gallery Columns (0.001935) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering gallery/new ActionView::TemplateError (undefined method `galleries_path' for #) on line #5 of gallery/new.html.erb: 2: 3: <%= error_messages_for :gallery %> 4: 5: <% form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| %> 6:

7: Title
8: <%= f.text_field :sTitle, :class=>"textbox" %> vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `send!' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:27:in `polymorphic_url' vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:31:in `polymorphic_path' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:200:in `apply_form_for_options!' vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:179:in `form_for' app/views/gallery/new.html.erb:5:in `_run_erb_47app47views47gallery47new46html46erb' vendor/rails/actionpack/lib/action_view/base.rb:637:in `send' vendor/rails/actionpack/lib/action_view/base.rb:637:in `compile_and_render_template' vendor/rails/actionpack/lib/action_view/base.rb:365:in `render_template' vendor/rails/actionpack/lib/action_view/base.rb:316:in `render_file' vendor/rails/actionpack/lib/action_controller/base.rb:1100:in `render_for_file' vendor/rails/actionpack/lib/action_controller/base.rb:858:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/base.rb:872:in `render_with_no_layout' vendor/rails/actionpack/lib/action_controller/layout.rb:262:in `render_without_benchmark' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `send' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:131:in `custom' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `call' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:156:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `each' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:150:in `respond' vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/gallery_controller.rb:17:in `new' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:689: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:199:in `perform_action_without_caching' vendor/rails/actionpack/lib/action_controller/caching.rb:678: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.rb:677:in `perform_action' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000135) SET NAMES 'utf8' SQL (0.000112) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000394) SELECT version FROM schema_info SQL (0.000206) SELECT version FROM schema_info SQL (0.000205) SELECT version FROM schema_info SQL (0.000199) SELECT version FROM schema_info SQL (0.000194) SELECT version FROM schema_info SQL (0.000193) SELECT version FROM schema_info SQL (0.000193) SELECT version FROM schema_info SQL (0.000312) SELECT * FROM schema_info SQL (0.000534) SHOW TABLES SQL (0.001058) SHOW FIELDS FROM `artwork` SQL (0.001005) describe `artwork` SQL (0.000993) SHOW KEYS FROM `artwork` SQL (0.000977) SHOW FIELDS FROM `engineering` SQL (0.000965) describe `engineering` SQL (0.001015) SHOW KEYS FROM `engineering` SQL (0.001193) SHOW FIELDS FROM `galleries` SQL (0.001291) describe `galleries` SQL (0.000981) SHOW KEYS FROM `galleries` SQL (0.001172) SHOW FIELDS FROM `gallery_files` SQL (0.001178) describe `gallery_files` SQL (0.000973) SHOW KEYS FROM `gallery_files` SQL (0.001184) SHOW FIELDS FROM `gallery_medias` SQL (0.001330) describe `gallery_medias` SQL (0.001014) SHOW KEYS FROM `gallery_medias` SQL (0.000926) SHOW FIELDS FROM `test1s` SQL (0.000912) describe `test1s` SQL (0.000971) SHOW KEYS FROM `test1s` SQL (0.001380) SHOW FIELDS FROM `users` SQL (0.001383) describe `users` SQL (0.001357) SHOW KEYS FROM `users` Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:18:12) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {} ActionController::RoutingError (No route matches "/gallery/new" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:18:17) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {} ActionController::RoutingError (No route matches "/galleries/new" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:20:50) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:20:50) [GET] Session ID: BAh7CToJdXNlcmkGOg5yZXR1cm5fdG8wOgxjc3JmX2lkIiUzN2UwNmQyNjQx%0AOTdlMmIwZDQwNzhhOGNhM2MxOWRlNiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--6c14cfa9900b61666c9195c5249fd51c75819c8a Parameters: {"action"=>"new", "controller"=>"galleries"} Errno::ENOENT (No such file or directory - /var/run/mysqld/mysqld.sock): /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `initialize' /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `new' /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `real_connect' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:471:in `connect' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:165:in `initialize' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:88:in `new' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:88:in `mysql_connection' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:291:in `send' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:291:in `connection=' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:259:in `retrieve_connection' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:78:in `connection' /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' /vendor/rails/actionpack/lib/action_controller/caching.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:20:55) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {"action"=>"new", "controller"=>"galleries"} Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:20:55) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {"action"=>"new", "controller"=>"galleries"} Errno::ENOENT (No such file or directory - /var/run/mysqld/mysqld.sock): /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `initialize' /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `new' /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `real_connect' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:471:in `connect' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:165:in `initialize' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:88:in `new' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:88:in `mysql_connection' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:291:in `send' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:291:in `connection=' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:259:in `retrieve_connection' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:78:in `connection' /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' /vendor/rails/actionpack/lib/action_controller/caching.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 21:21:06) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {"action"=>"index", "controller"=>"artwork"} Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 21:21:06) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {"action"=>"index", "controller"=>"artwork"} Errno::ENOENT (No such file or directory - /var/run/mysqld/mysqld.sock): /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `initialize' /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `new' /vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:107:in `real_connect' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:471:in `connect' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:165:in `initialize' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:88:in `new' /vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:88:in `mysql_connection' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:291:in `send' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:291:in `connection=' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:259:in `retrieve_connection' /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:78:in `connection' /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache' /vendor/rails/actionpack/lib/action_controller/caching.rb:677:in `perform_action' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send' /vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters' /vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process' /vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error) WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000133) SET NAMES 'utf8' SQL (0.000123) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000372) SELECT version FROM schema_info SQL (0.000195) SELECT version FROM schema_info SQL (0.000192) SELECT version FROM schema_info SQL (0.000192) SELECT version FROM schema_info SQL (0.000206) SELECT version FROM schema_info SQL (0.000528) SELECT version FROM schema_info SQL (0.000208) SELECT version FROM schema_info Migrating to CreateGalleries (9) SQL (0.000000) Mysql::Error: #42S01Table 'galleries' already exists: CREATE TABLE `galleries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000138) SET NAMES 'utf8' SQL (0.000109) SET SQL_AUTO_IS_NULL=0 SQL (0.104895) DROP DATABASE IF EXISTS `Portfolio_development` SQL (0.000239) DROP DATABASE IF EXISTS `Portfolio_production` SQL (0.000189) DROP DATABASE IF EXISTS `Portfolio_test` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000157) SET NAMES 'utf8' SQL (0.000129) SET SQL_AUTO_IS_NULL=0 SQL (0.000293) CREATE DATABASE `Portfolio_development` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000134) SET NAMES 'utf8' SQL (0.000112) SET SQL_AUTO_IS_NULL=0 SQL (0.000207) CREATE DATABASE `Portfolio_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000136) SET NAMES 'utf8' SQL (0.000111) SET SQL_AUTO_IS_NULL=0 SQL (0.000214) CREATE DATABASE `Portfolio_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000238) SET NAMES 'utf8' SQL (0.000202) SET SQL_AUTO_IS_NULL=0 SQL (0.354923) CREATE TABLE `schema_info` (version int(11)) SQL (0.000568) INSERT INTO `schema_info` (version) VALUES(0) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000596) SELECT version FROM schema_info Migrating to CreateEngineering (2) SQL (0.218338) CREATE TABLE `engineering` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000410) UPDATE schema_info SET version = 2 SQL (0.000521) SELECT version FROM schema_info Migrating to CreateArtwork (3) SQL (0.037510) CREATE TABLE `artwork` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000383) UPDATE schema_info SET version = 3 SQL (0.000509) SELECT version FROM schema_info Migrating to CreateGalleryFiles (5) SQL (0.053878) CREATE TABLE `gallery_files` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `sDescription` text DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.001683) UPDATE schema_info SET version = 5 SQL (0.000332) SELECT version FROM schema_info Migrating to CreateUsers (6) SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users` SQL (0.004261) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `crypted_password` varchar(40) DEFAULT NULL, `salt` varchar(40) DEFAULT NULL, `role` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `remember_token` varchar(255) DEFAULT NULL, `remember_token_expires_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000303) UPDATE schema_info SET version = 6 SQL (0.000284) SELECT version FROM schema_info Migrating to CreateGalleryMedias (7) SQL (0.003536) CREATE TABLE `gallery_medias` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `medianame` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000296) UPDATE schema_info SET version = 7 SQL (0.000285) SELECT version FROM schema_info Migrating to CreateTest1s (8) SQL (0.297155) CREATE TABLE `test1s` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000368) UPDATE schema_info SET version = 8 SQL (0.000493) SELECT version FROM schema_info Migrating to CreateGalleries (9) SQL (0.010275) CREATE TABLE `galleries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000405) UPDATE schema_info SET version = 9 SQL (0.000730) SELECT * FROM schema_info SQL (0.000972) SHOW TABLES SQL (0.002347) SHOW FIELDS FROM `artwork` SQL (0.002227) describe `artwork` SQL (0.002042) SHOW KEYS FROM `artwork` SQL (0.002309) SHOW FIELDS FROM `engineering` SQL (0.002284) describe `engineering` SQL (0.002403) SHOW KEYS FROM `engineering` SQL (0.002135) SHOW FIELDS FROM `galleries` SQL (0.001947) describe `galleries` SQL (0.002290) SHOW KEYS FROM `galleries` SQL (0.002763) SHOW FIELDS FROM `gallery_files` SQL (0.002771) describe `gallery_files` SQL (0.002040) SHOW KEYS FROM `gallery_files` SQL (0.002799) SHOW FIELDS FROM `gallery_medias` SQL (0.002473) describe `gallery_medias` SQL (0.001975) SHOW KEYS FROM `gallery_medias` SQL (0.002556) SHOW FIELDS FROM `test1s` SQL (0.002091) describe `test1s` SQL (0.001966) SHOW KEYS FROM `test1s` SQL (0.005367) SHOW FIELDS FROM `users` SQL (0.003543) describe `users` SQL (0.002086) SHOW KEYS FROM `users` Processing ArtworkController#index (for 127.0.0.1 at 2008-06-24 21:22:37) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {"action"=>"index", "controller"=>"artwork"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000147) SET NAMES 'utf8' SQL (0.000123) SET SQL_AUTO_IS_NULL=0 Rendering template within layouts/main Rendering artwork/index Completed in 0.18160 (5 reqs/sec) | Rendering: 0.17845 (98%) | DB: 0.00027 (0%) | 200 OK [http://127.0.0.1/Artwork/] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:22:37) [GET] Session ID: BAh7CToJdXNlcmkGOgxjc3JmX2lkIiUzN2UwNmQyNjQxOTdlMmIwZDQwNzhh%0AOGNhM2MxOWRlNjoOcmV0dXJuX3RvMCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%0AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--d4abbc2bc37b0a1dd2ad24860338691a857ac957 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:24:19) [GET] Session ID: 7cfb7cff0f8e03f71d6fd6a7a94e533e Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.001233) SHOW FIELDS FROM `galleries` Rendering template within layouts/galleries Rendering galleries/new Completed in 0.14670 (6 reqs/sec) | Rendering: 0.13662 (93%) | DB: 0.00123 (0%) | 200 OK [http://127.0.0.1/galleries/new] WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000162) SET NAMES 'utf8' SQL (0.000135) SET SQL_AUTO_IS_NULL=0 SQL (2.706409) DROP DATABASE IF EXISTS `Portfolio_development` SQL (0.000403) DROP DATABASE IF EXISTS `Portfolio_production` SQL (0.000328) DROP DATABASE IF EXISTS `Portfolio_test` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000150) SET NAMES 'utf8' SQL (0.000122) SET SQL_AUTO_IS_NULL=0 SQL (0.000239) CREATE DATABASE `Portfolio_development` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000142) SET NAMES 'utf8' SQL (0.000120) SET SQL_AUTO_IS_NULL=0 SQL (0.000211) CREATE DATABASE `Portfolio_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000141) SET NAMES 'utf8' SQL (0.000122) SET SQL_AUTO_IS_NULL=0 SQL (0.000222) CREATE DATABASE `Portfolio_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000145) SET NAMES 'utf8' SQL (0.000121) SET SQL_AUTO_IS_NULL=0 SQL (0.889955) CREATE TABLE `schema_info` (version int(11)) SQL (0.001854) INSERT INTO `schema_info` (version) VALUES(0) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.000618) SELECT version FROM schema_info Migrating to CreateGalleries (1) SQL (0.029902) CREATE TABLE `galleries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `sType` varchar(255) DEFAULT NULL, `engineering_id` int(11) DEFAULT NULL, `artwork_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000334) UPDATE schema_info SET version = 1 SQL (0.000313) SELECT version FROM schema_info Migrating to CreateEngineering (2) SQL (0.004035) CREATE TABLE `engineering` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000234) UPDATE schema_info SET version = 2 SQL (0.000295) SELECT version FROM schema_info Migrating to CreateArtwork (3) SQL (0.003894) CREATE TABLE `artwork` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000235) UPDATE schema_info SET version = 3 SQL (0.000294) SELECT version FROM schema_info Migrating to CreateGalleryFiles (5) SQL (0.003763) CREATE TABLE `gallery_files` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `sDescription` text DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000256) UPDATE schema_info SET version = 5 SQL (0.000295) SELECT version FROM schema_info Migrating to CreateUsers (6) SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users` SQL (0.003775) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `crypted_password` varchar(40) DEFAULT NULL, `salt` varchar(40) DEFAULT NULL, `role` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `remember_token` varchar(255) DEFAULT NULL, `remember_token_expires_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000264) UPDATE schema_info SET version = 6 SQL (0.000301) SELECT version FROM schema_info Migrating to CreateGalleryMedias (7) SQL (0.003338) CREATE TABLE `gallery_medias` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `medianame` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000320) UPDATE schema_info SET version = 7 SQL (0.000328) SELECT version FROM schema_info Migrating to CreateTest1s (8) SQL (0.003551) CREATE TABLE `test1s` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.000259) UPDATE schema_info SET version = 8 SQL (0.000418) SELECT * FROM schema_info SQL (0.000533) SHOW TABLES SQL (0.001247) SHOW FIELDS FROM `artwork` SQL (0.001099) describe `artwork` SQL (0.001786) SHOW KEYS FROM `artwork` SQL (0.003859) SHOW FIELDS FROM `engineering` SQL (0.001258) describe `engineering` SQL (0.001030) SHOW KEYS FROM `engineering` SQL (0.002881) SHOW FIELDS FROM `galleries` SQL (0.004630) describe `galleries` SQL (0.001117) SHOW KEYS FROM `galleries` SQL (0.008191) SHOW FIELDS FROM `gallery_files` SQL (0.001456) describe `gallery_files` SQL (0.001065) SHOW KEYS FROM `gallery_files` SQL (0.001424) SHOW FIELDS FROM `gallery_medias` SQL (0.001303) describe `gallery_medias` SQL (0.003033) SHOW KEYS FROM `gallery_medias` SQL (0.004601) SHOW FIELDS FROM `test1s` SQL (0.001115) describe `test1s` SQL (0.001043) SHOW KEYS FROM `test1s` SQL (0.005943) SHOW FIELDS FROM `users` SQL (0.001748) describe `users` SQL (0.001077) SHOW KEYS FROM `users` Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:28:39) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--104b94211ec3eb0aee9b533efe9f7c1cc0b609e9 Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000157) SET NAMES 'utf8' SQL (0.000131) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.001514) SHOW FIELDS FROM `galleries` Rendering template within layouts/galleries Rendering galleries/new Completed in 0.01829 (54 reqs/sec) | Rendering: 0.00839 (45%) | DB: 0.00180 (9%) | 200 OK [http://127.0.0.1/galleries/new] Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:30:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--104b94211ec3eb0aee9b533efe9f7c1cc0b609e9 Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.001662) SHOW FIELDS FROM `galleries` Rendering template within layouts/galleries Rendering galleries/new Completed in 0.08153 (12 reqs/sec) | Rendering: 0.07107 (87%) | DB: 0.00166 (2%) | 200 OK [http://127.0.0.1/galleries/new] SQL (0.000212) SET NAMES 'utf8' SQL (0.000159) SET SQL_AUTO_IS_NULL=0 Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:31:23) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--104b94211ec3eb0aee9b533efe9f7c1cc0b609e9 Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002088) SHOW FIELDS FROM `galleries` Rendering template within layouts/galleries Rendering galleries/new Completed in 0.01667 (59 reqs/sec) | Rendering: 0.00598 (35%) | DB: 0.00246 (14%) | 200 OK [http://127.0.0.1/galleries/new] Processing GalleriesController#create (for 127.0.0.1 at 2008-06-24 21:31:39) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--104b94211ec3eb0aee9b533efe9f7c1cc0b609e9 Parameters: {"commit"=>"Create", "authenticity_token"=>"893d4a421b65ec74ef1ff335906cffcad068594a", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"yay", "sType"=>"textbox", "sTitle"=>"test"}, "gallery_files"=>#} Gallery Columns (0.001569) SHOW FIELDS FROM `galleries` SQL (0.000151) BEGIN Gallery Create (0.000422) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, 'yay', '2008-06-24 21:31:39', 'textbox', NULL, 'test', '2008-06-24 21:31:39') SQL (0.005511) COMMIT Redirected to http://127.0.0.1:3000/galleries/1 Completed in 0.01943 (51 reqs/sec) | DB: 0.00765 (39%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-24 21:31:39) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--62910808795e53be8197930e62762855bdaea0f1 Parameters: {"action"=>"show", "id"=>"1", "controller"=>"galleries"} Gallery Columns (0.001692) SHOW FIELDS FROM `galleries` Gallery Load (0.039006) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 1)  Rendering template within layouts/galleries Rendering galleries/show Completed in 0.07259 (13 reqs/sec) | Rendering: 0.02253 (31%) | DB: 0.04070 (56%) | 200 OK [http://127.0.0.1/galleries/1] Processing GalleriesController#edit (for 127.0.0.1 at 2008-06-24 21:31:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--104b94211ec3eb0aee9b533efe9f7c1cc0b609e9 Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"galleries"} Gallery Columns (0.001585) SHOW FIELDS FROM `galleries` Gallery Load (0.000728) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 1)  Rendering template within layouts/galleries Rendering galleries/edit Completed in 0.01468 (68 reqs/sec) | Rendering: 0.00375 (25%) | DB: 0.00231 (15%) | 200 OK [http://127.0.0.1/galleries/1/edit] Processing GalleriesController#index (for 127.0.0.1 at 2008-06-24 21:31:43) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--104b94211ec3eb0aee9b533efe9f7c1cc0b609e9 Parameters: {"action"=>"index", "controller"=>"galleries"} Gallery Load (0.000949) SELECT * FROM `galleries`  Rendering template within layouts/galleries Rendering galleries/index Gallery Columns (0.001501) SHOW FIELDS FROM `galleries` Completed in 0.02938 (34 reqs/sec) | Rendering: 0.01887 (64%) | DB: 0.00245 (8%) | 200 OK [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-24 21:31:46) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZDA3NGRiMjczYjFhODM4MmM3OGY5ZGI5NzZkMTM3%0ANTciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--104b94211ec3eb0aee9b533efe9f7c1cc0b609e9 Parameters: {"action"=>"show", "id"=>"1", "controller"=>"galleries"} Gallery Columns (0.001529) SHOW FIELDS FROM `galleries` Gallery Load (0.000674) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 1)  Rendering template within layouts/galleries Rendering galleries/show Completed in 0.01199 (83 reqs/sec) | Rendering: 0.00148 (12%) | DB: 0.00220 (18%) | 200 OK [http://127.0.0.1/galleries/1] Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:35:35) [GET] Session ID: c7b9bf81ebcc7e0c56fc9375d42f0ceb Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000155) SET NAMES 'utf8' SQL (0.000128) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.001557) SHOW FIELDS FROM `galleries` Rendering template within layouts/galleries Rendering galleries/new Completed in 0.04868 (20 reqs/sec) | Rendering: 0.02507 (51%) | DB: 0.00184 (3%) | 200 OK [http://127.0.0.1/Galleries/new] Processing GalleriesController#new (for 127.0.0.1 at 2008-06-24 21:36:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlNWI4MDllMmU4MTg4ZmJkMjM3YTMwMTAyOWU5MWUx%0AYzEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--3fa30bb872d0451a94ca6df37684218b88a1af9e Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000140) SET NAMES 'utf8' SQL (0.000121) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.002110) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.04996 (20 reqs/sec) | Rendering: 0.03849 (77%) | DB: 0.00237 (4%) | 200 OK [http://127.0.0.1/Galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:36:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlNWI4MDllMmU4MTg4ZmJkMjM3YTMwMTAyOWU5MWUx%0AYzEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--3fa30bb872d0451a94ca6df37684218b88a1af9e Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-24 21:36:56) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlNWI4MDllMmU4MTg4ZmJkMjM3YTMwMTAyOWU5MWUx%0AYzEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--3fa30bb872d0451a94ca6df37684218b88a1af9e Parameters: {} ActionController::RoutingError (No route matches "/gallery/manage" with {:method=>:get}): /vendor/rails/actionpack/lib/action_controller/routing.rb:1441:in `recognize_path' /vendor/rails/actionpack/lib/action_controller/routing.rb:1424:in `recognize' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:170:in `handle_request' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch' /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch' /vendor/rails/railties/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch' /vendor/rails/railties/lib/commands/servers/webrick.rb:66 /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require' /usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' /vendor/rails/activesupport/lib/active_support/dependencies.rb:496:in `require' /vendor/rails/railties/lib/commands/server.rb:39 script/server:3:in `require' script/server:3 Rendering /home/falcon-/Rails/Portfolio/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found) WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.001000) SET SQL_AUTO_IS_NULL=0 SQL (0.044000) DROP DATABASE IF EXISTS `test` SQL (0.030000) DROP DATABASE IF EXISTS `test` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) CREATE DATABASE `Porfolio_devel` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) SET SQL_AUTO_IS_NULL=0 SQL (0.000000) CREATE DATABASE `Porfolio_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` SQL (0.000000) SET SQL_AUTO_IS_NULL=0 SQL (0.001000) CREATE DATABASE `Portfolio_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_general_ci` WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 SQL (0.055000) CREATE TABLE `schema_info` (version int(11)) SQL (0.033000) INSERT INTO `schema_info` (version) VALUES(0) SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11)) SQL (0.001000) SELECT version FROM schema_info Migrating to CreateGalleries (1) SQL (0.058000) CREATE TABLE `galleries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `sType` varchar(255) DEFAULT NULL, `engineering_id` int(11) DEFAULT NULL, `artwork_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.032000) UPDATE schema_info SET version = 1 SQL (0.001000) SELECT version FROM schema_info Migrating to CreateEngineering (2) SQL (0.057000) CREATE TABLE `engineering` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.032000) UPDATE schema_info SET version = 2 SQL (0.000000) SELECT version FROM schema_info Migrating to CreateArtwork (3) SQL (0.065000) CREATE TABLE `artwork` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.032000) UPDATE schema_info SET version = 3 SQL (0.000000) SELECT version FROM schema_info Migrating to CreateGalleryFiles (5) SQL (0.065000) CREATE TABLE `gallery_files` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `sDescription` text DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.032000) UPDATE schema_info SET version = 5 SQL (0.000000) SELECT version FROM schema_info Migrating to CreateUsers (6) SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users` SQL (0.091000) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `login` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `crypted_password` varchar(40) DEFAULT NULL, `salt` varchar(40) DEFAULT NULL, `role` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `remember_token` varchar(255) DEFAULT NULL, `remember_token_expires_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.038000) UPDATE schema_info SET version = 6 SQL (0.001000) SELECT version FROM schema_info Migrating to CreateGalleryMedias (7) SQL (0.073000) CREATE TABLE `gallery_medias` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `sTitle` varchar(255) DEFAULT NULL, `tDescription` text DEFAULT NULL, `medianame` varchar(255) DEFAULT NULL, `gallery_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.032000) UPDATE schema_info SET version = 7 SQL (0.000000) SELECT version FROM schema_info Migrating to CreateTest1s (8) SQL (0.057000) CREATE TABLE `test1s` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL) ENGINE=InnoDB SQL (0.032000) UPDATE schema_info SET version = 8 SQL (0.000000) SELECT * FROM schema_info SQL (0.000000) SHOW TABLES SQL (0.002000) SHOW FIELDS FROM `artwork` SQL (0.002000) describe `artwork` SQL (0.001000) SHOW KEYS FROM `artwork` SQL (0.002000) SHOW FIELDS FROM `engineering` SQL (0.001000) describe `engineering` SQL (0.000000) SHOW KEYS FROM `engineering` SQL (0.001000) SHOW FIELDS FROM `galleries` SQL (0.001000) describe `galleries` SQL (0.000000) SHOW KEYS FROM `galleries` SQL (0.001000) SHOW FIELDS FROM `gallery_files` SQL (0.001000) describe `gallery_files` SQL (0.000000) SHOW KEYS FROM `gallery_files` SQL (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.002000) describe `gallery_medias` SQL (0.001000) SHOW KEYS FROM `gallery_medias` SQL (0.002000) SHOW FIELDS FROM `test1s` SQL (0.001000) describe `test1s` SQL (0.000000) SHOW KEYS FROM `test1s` SQL (0.002000) SHOW FIELDS FROM `users` SQL (0.002000) describe `users` SQL (0.001000) SHOW KEYS FROM `users` Processing ApplicationController#index (for 127.0.0.1 at 2008-06-27 20:01:07) [GET] Session ID: 9c62caf684fe6a07eda4aba33d09ad01 Parameters: {} ActionController::RoutingError (No route matches "/gallery" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#index (for 127.0.0.1 at 2008-06-27 20:01:09) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {"action"=>"index", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 Gallery Load (0.000000) SELECT * FROM `galleries`  Rendering template within layouts/main Rendering galleries/index Completed in 0.05400 (18 reqs/sec) | Rendering: 0.04400 (81%) | DB: 0.00000 (0%) | 200 OK [http://127.0.0.1/galleries] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-27 20:01:10) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ArtworkController#index (for 127.0.0.1 at 2008-06-27 20:01:14) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {"action"=>"index", "controller"=>"artwork"} Rendering template within layouts/main Rendering artwork/index Completed in 0.00400 (250 reqs/sec) | Rendering: 0.00200 (50%) | DB: 0.00000 (0%) | 200 OK [http://127.0.0.1/artwork] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-27 20:01:14) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing Base#index (for 127.0.0.1 at 2008-06-28 16:02:01) [GET] Session ID: dce80b20ac7da62fd1cc690d32979504 Parameters: {} NameError (undefined local variable or method `c' for main:Object): /app/controllers/application.rb:1 /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:202:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:94:in `require_or_load' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:60:in `depend_on' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:442:in `require_dependency' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:141:in `prepare_application' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:178:in `send!' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:178:in `run_callbacks' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `send!' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `run_callbacks' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:114:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing Base#index (for 127.0.0.1 at 2008-06-28 16:02:08) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {} NameError (undefined local variable or method `c' for main:Object): /app/controllers/application.rb:1 /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:202:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:94:in `require_or_load' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:60:in `depend_on' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:442:in `require_dependency' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:141:in `prepare_application' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:178:in `send!' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:178:in `run_callbacks' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `send!' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `run_callbacks' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:114:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#index (for 127.0.0.1 at 2008-06-28 16:02:21) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {"action"=>"index", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 Gallery Load (0.020000) SELECT * FROM `galleries`  Rendering template within layouts/main Rendering galleries/index Completed in 0.05800 (17 reqs/sec) | Rendering: 0.02900 (49%) | DB: 0.02000 (34%) | 200 OK [http://127.0.0.1/galleries] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:02:21) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:02:28) [GET] Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--3de809853f6748f0163a06034bf99ec37c5e7e30 Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.03600 (27 reqs/sec) | Rendering: 0.02500 (69%) | DB: 0.00300 (8%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:02:28) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:02:47) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/images/icon-delete.gif" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 16:02:56) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"commit"=>"Create", "authenticity_token"=>"7aeafbd0f6479a3508e99ab62a19716427fab652", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"blah", "sType"=>"textbox", "sTitle"=>"Test gallery 1"}, "gallery_files"=>{"0"=>#, "1"=>#, "2"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` SQL (0.000000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, 'blah', '2008-06-28 16:02:56', 'textbox', NULL, 'Test gallery 1', '2008-06-28 16:02:56') SQL (0.040000) COMMIT Redirected to http://127.0.0.1:3000/galleries/1 Completed in 0.05400 (18 reqs/sec) | DB: 0.04200 (77%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 16:02:56) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--2b1137e0817a08b5bbaf9b0555d2d61f2b3e60d1 Parameters: {"action"=>"show", "id"=>"1", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.000000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 1)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00300 (18%) | DB: 0.00200 (12%) | 200 OK [http://127.0.0.1/galleries/1] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:02:57) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:10:18) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00400 (26%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:10:19) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:15:44) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00500 (33%) | DB: 0.00200 (13%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:15:44) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:19:59) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.05400 (18 reqs/sec) | Rendering: 0.00400 (7%) | DB: 0.00300 (5%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:19:59) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:20:17) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00500 (31%) | DB: 0.00200 (12%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:20:17) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:20:41) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.004000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00500 (29%) | DB: 0.00400 (23%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:20:41) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:20:49) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00500 (31%) | DB: 0.00300 (18%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:20:49) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:21:01) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00500 (29%) | DB: 0.00200 (11%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:21:01) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:21:49) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00500 (31%) | DB: 0.00200 (12%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:21:49) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 16:21:57) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"7aeafbd0f6479a3508e99ab62a19716427fab652", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"textbox", "sTitle"=>""}, "gallery_files"=>{"0"=>#, "1"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` SQL (0.000000) SHOW TABLES GalleryFiles Columns (0.035000) SHOW FIELDS FROM `gallery_files` SQL (0.000000) SHOW TABLES GalleryFiles Columns (0.003000) SHOW FIELDS FROM `gallery_files` NoMethodError (undefined method `file_column' for #): /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1532:in `method_missing' /app/models/gallery_files.rb:4 /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:202:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:94:in `require_or_load' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:248:in `load_missing_constant' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:453:in `const_missing' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:465:in `const_missing' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:471:in `send' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:471:in `const_missing' /app/controllers/galleries_controller.rb:49:in `create' /app/controllers/galleries_controller.rb:48:in `each' /app/controllers/galleries_controller.rb:48:in `create' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 16:23:36) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"7aeafbd0f6479a3508e99ab62a19716427fab652", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"textbox", "sTitle"=>""}, "gallery_files"=>{"0"=>#, "1"=>""}} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.001000) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` SQL (0.001000) SHOW TABLES GalleryFiles Columns (0.002000) SHOW FIELDS FROM `gallery_files` SQL (0.000000) SHOW TABLES GalleryFiles Columns (0.002000) SHOW FIELDS FROM `gallery_files` NoMethodError (undefined method `file_column' for #): /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1532:in `method_missing' /app/models/gallery_files.rb:4 /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:202:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:94:in `require_or_load' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:248:in `load_missing_constant' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:453:in `const_missing' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:465:in `const_missing' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:471:in `send' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:471:in `const_missing' /app/controllers/galleries_controller.rb:49:in `create' /app/controllers/galleries_controller.rb:48:in `each' /app/controllers/galleries_controller.rb:48:in `create' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:29:07) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.001000) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.02200 (45 reqs/sec) | Rendering: 0.01000 (45%) | DB: 0.00300 (13%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:29:07) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:29:26) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new ActionView::TemplateError (wrong number of arguments (1 for 2)) on line #18 of galleries/new.html.erb: 15: 16:

17: Type
18: <%= f.select :sType %> 19: <%= options_for_select [["Artwork", "Artwork"], ["Engineering", "Engineering"]] %> 20:

21: app/views/galleries/new.html.erb:18:in `select' app/views/galleries/new.html.erb:18:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:248:in `fields_for' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:184:in `form_for' app/views/galleries/new.html.erb:5:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:31:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:29:37) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new ActionView::TemplateError (wrong number of arguments (1 for 3)) on line #18 of galleries/new.html.erb: 15: 16:

17: Type
18: <%= select :sType %> 19: <%= options_for_select [["Artwork", "Artwork"], ["Engineering", "Engineering"]] %> 20:

21: app/views/galleries/new.html.erb:18:in `select' app/views/galleries/new.html.erb:18:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:248:in `fields_for' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:184:in `form_for' app/views/galleries/new.html.erb:5:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:31:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:29:50) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00500 (29%) | DB: 0.00300 (17%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:29:50) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:32:10) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new ActionView::TemplateError (undefined method `#' for #) on line #18 of galleries/new.html.erb: 15: 16:

17: Type
18: <%= f.select @gallery, :sType, :class => "textbox" %> 19: <%= options_for_select [["Artwork", "Artwork"], ["Engineering", "Engineering"]] %> 20:

21: /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/attribute_methods.rb:205:in `method_missing' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:555:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:555:in `value' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:546:in `value' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_options_helper.rb:356:in `to_select_tag' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_options_helper.rb:84:in `select' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_options_helper.rb:409:in `select' app/views/galleries/new.html.erb:18:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:248:in `fields_for' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:184:in `form_for' app/views/galleries/new.html.erb:5:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:31:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:32:50) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00600 (35%) | DB: 0.00300 (17%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:32:50) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:33:08) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00500 (29%) | DB: 0.00200 (11%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:33:09) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:33:14) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00600 (35%) | DB: 0.00300 (17%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:33:14) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:33:26) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00500 (33%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:33:26) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:33:30) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00600 (35%) | DB: 0.00200 (11%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:33:30) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 16:33:49) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"gallery_media"=>{"0"=>#, "2"=>#, "3"=>""}, "commit"=>"Create", "authenticity_token"=>"7aeafbd0f6479a3508e99ab62a19716427fab652", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"text", "sType"=>"Artwork", "sTitle"=>"test 2"}, "gallery_files"=>{"0"=>#, "1"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryFiles Columns (0.002000) SHOW FIELDS FROM `gallery_files` SQL (0.000000) BEGIN GalleryFiles Create (0.001000) INSERT INTO `gallery_files` (`gallery_id`, `updated_at`, `filename`, `sDescription`, `sTitle`, `created_at`) VALUES(0, '2008-06-28 16:33:49', '__Ship_Sketch___by_concept_on_mac.jpg', NULL, NULL, '2008-06-28 16:33:49') SQL (0.051000) COMMIT MissingSourceFile (no such file to load -- RMagick): /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /vendor/plugins/file_column/lib/magick_file_column.rb:208:in `file_column' /vendor/plugins/file_column/lib/file_column.rb:698:in `file_column' /app/models/gallery_media.rb:5 /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:203:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:202:in `load_file' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:94:in `require_or_load' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:248:in `load_missing_constant' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:453:in `const_missing' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:465:in `const_missing' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:260:in `load_missing_constant' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:469:in `const_missing' /app/controllers/galleries_controller.rb:52:in `create' /app/controllers/galleries_controller.rb:51:in `each' /app/controllers/galleries_controller.rb:51:in `create' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 16:42:22) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.02200 (45 reqs/sec) | Rendering: 0.01000 (45%) | DB: 0.00300 (13%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:42:22) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 16:42:31) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"7aeafbd0f6479a3508e99ab62a19716427fab652", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"text", "sType"=>"Artwork", "sTitle"=>"test 2"}, "gallery_files"=>{"0"=>#, "1"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryFiles Columns (0.003000) SHOW FIELDS FROM `gallery_files` SQL (0.000000) BEGIN GalleryFiles Create (0.000000) INSERT INTO `gallery_files` (`gallery_id`, `updated_at`, `filename`, `sDescription`, `sTitle`, `created_at`) VALUES(0, '2008-06-28 16:42:31', '0010.jpg', NULL, NULL, '2008-06-28 16:42:31') SQL (0.056000) COMMIT GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN GalleryMedia Create (0.000000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 16:42:31', '00259.jpg', NULL, '2008-06-28 16:42:31') SQL (0.041000) COMMIT SQL (0.001000) BEGIN GalleryMedia Create (0.001000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 16:42:31', '00271.jpg', NULL, '2008-06-28 16:42:31') SQL (0.028000) COMMIT SQL (0.001000) BEGIN Gallery Create (0.001000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, 'text', '2008-06-28 16:42:31', 'Artwork', NULL, 'test 2', '2008-06-28 16:42:31') SQL (0.031000) COMMIT Redirected to http://127.0.0.1:3000/galleries/2 Completed in 0.76300 (1 reqs/sec) | DB: 0.16700 (21%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 16:42:31) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--2b1137e0817a08b5bbaf9b0555d2d61f2b3e60d1 Parameters: {"action"=>"show", "id"=>"2", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 2)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00300 (20%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/2] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 16:42:32) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlMTFlOTE0MjIwYzllY2M2MjUwZjZhNzgzZjU4NDJm%0ANDkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--1e4386720b813fcba98ecd727250a394306b61ae Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#index (for 127.0.0.1 at 2008-06-28 17:53:39) [GET] Session ID: 8f414b7b3820f644188e7f8adb458b83 Parameters: {"action"=>"index", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 Gallery Load (0.020000) SELECT * FROM `galleries`  Rendering template within layouts/main Rendering galleries/index Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Completed in 0.08900 (11 reqs/sec) | Rendering: 0.05600 (62%) | DB: 0.02200 (24%) | 200 OK [http://127.0.0.1/galleries] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:53:39) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 17:53:44) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.02400 (41 reqs/sec) | Rendering: 0.01400 (58%) | DB: 0.00200 (8%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:53:44) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 17:54:21) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"...", "sType"=>"Artwork", "sTitle"=>"test"}, "gallery_files"=>{"0"=>#, "1"=>""}} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.001000) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryFiles Columns (0.025000) SHOW FIELDS FROM `gallery_files` SQL (0.000000) BEGIN GalleryFiles Create (0.001000) INSERT INTO `gallery_files` (`gallery_id`, `updated_at`, `filename`, `sDescription`, `sTitle`, `created_at`) VALUES(0, '2008-06-28 17:54:22', '__Ship_Sketch___by_concept_on_mac.jpg', NULL, NULL, '2008-06-28 17:54:22') SQL (0.050000) COMMIT GalleryMedia Columns (0.040000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN SQL (0.001000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '...', '2008-06-28 17:54:23', 'Artwork', NULL, 'test', '2008-06-28 17:54:23') SQL (0.048000) COMMIT Redirected to http://127.0.0.1:3000/galleries/3 Completed in 1.35900 (0 reqs/sec) | DB: 0.16800 (12%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 17:54:23) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"3", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 3)  Rendering template within layouts/main Rendering galleries/show Completed in 0.03800 (26 reqs/sec) | Rendering: 0.02600 (68%) | DB: 0.00400 (10%) | 200 OK [http://127.0.0.1/galleries/3] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:54:23) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#edit (for 127.0.0.1 at 2008-06-28 17:55:30) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"edit", "id"=>"3", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 3)  Rendering template within layouts/main Rendering galleries/edit Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00400 (23%) | DB: 0.00300 (17%) | 200 OK [http://127.0.0.1/galleries/3/edit] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:55:30) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 17:55:39) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.02800 (35 reqs/sec) | Rendering: 0.01600 (57%) | DB: 0.00200 (7%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:55:39) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 17:55:49) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"12asd"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 17:55:49', 'Artwork', NULL, '12asd', '2008-06-28 17:55:49') SQL (0.050000) COMMIT Redirected to http://127.0.0.1:3000/galleries/4 Completed in 0.66700 (1 reqs/sec) | DB: 0.05500 (8%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 17:55:49) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"4", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 4)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00300 (20%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/4] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:55:50) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 17:56:36) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"12asd"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.003000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 17:56:37', 'Artwork', NULL, '12asd', '2008-06-28 17:56:37') SQL (0.034000) COMMIT Redirected to http://127.0.0.1:3000/galleries/5 Completed in 0.59400 (1 reqs/sec) | DB: 0.03900 (6%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 17:56:37) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"5", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 5)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00300 (19%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/5] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:56:37) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 17:56:52) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"12asd"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.001000) BEGIN GalleryMedia Create (0.001000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 17:56:53', '00244.jpg', NULL, '2008-06-28 17:56:53') SQL (0.067000) COMMIT SQL (0.000000) BEGIN GalleryMedia Create (0.000000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 17:56:53', '00254.jpg', NULL, '2008-06-28 17:56:53') SQL (0.031000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 17:56:53', 'Artwork', NULL, '12asd', '2008-06-28 17:56:53') SQL (0.029000) COMMIT Redirected to http://127.0.0.1:3000/galleries/6 Completed in 0.50600 (1 reqs/sec) | DB: 0.13400 (26%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 17:56:53) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"6", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 6)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01400 (71 reqs/sec) | Rendering: 0.00200 (14%) | DB: 0.00300 (21%) | 200 OK [http://127.0.0.1/galleries/6] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 17:56:53) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:00:16) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.001000) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.02500 (39 reqs/sec) | Rendering: 0.01200 (48%) | DB: 0.00300 (12%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:00:16) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:00:42) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"654"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.001000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:00:43', 'Artwork', NULL, '654', '2008-06-28 18:00:43') SQL (0.044000) COMMIT Redirected to http://127.0.0.1:3000/galleries/7 Completed in 0.58100 (1 reqs/sec) | DB: 0.05000 (8%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:00:43) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"7", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.002000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 7)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00300 (18%) | DB: 0.00400 (24%) | 200 OK [http://127.0.0.1/galleries/7] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:00:43) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:07:46) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.000000) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.02600 (38 reqs/sec) | Rendering: 0.01300 (50%) | DB: 0.00300 (11%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:07:46) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:07:52) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"654"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.003000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN SQL (0.001000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.020000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:07:52', 'Artwork', NULL, '654', '2008-06-28 18:07:52') SQL (0.048000) COMMIT Redirected to http://127.0.0.1:3000/galleries/8 Completed in 0.57600 (1 reqs/sec) | DB: 0.07400 (12%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:07:52) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"8", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 8)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00300 (20%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/8] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:07:52) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:10:24) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00400 (26%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:10:24) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:10:31) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"654a"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN SQL (0.001000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:10:31', 'Artwork', NULL, '654a', '2008-06-28 18:10:31') SQL (0.044000) COMMIT Redirected to http://127.0.0.1:3000/galleries/9 Completed in 0.42100 (2 reqs/sec) | DB: 0.05000 (11%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:10:31) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"9", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 9)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00300 (20%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/9] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:10:31) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:11:05) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01400 (71 reqs/sec) | Rendering: 0.00400 (28%) | DB: 0.00200 (14%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:11:05) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:11:11) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"654a"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.001000) BEGIN GalleryMedia Create (0.001000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:11:12', '51ozgtCdWwL__SS500_.jpg', NULL, '2008-06-28 18:11:12') SQL (0.050000) COMMIT SQL (0.001000) BEGIN GalleryMedia Create (0.001000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:11:12', '00254.jpg', NULL, '2008-06-28 18:11:12') SQL (0.048000) COMMIT SQL (0.001000) BEGIN Gallery Create (0.001000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:11:12', 'Artwork', NULL, '654a', '2008-06-28 18:11:12') SQL (0.031000) COMMIT Redirected to http://127.0.0.1:3000/galleries/10 Completed in 0.48700 (2 reqs/sec) | DB: 0.14000 (28%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:11:12) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"10", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 10)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00300 (18%) | DB: 0.00400 (24%) | 200 OK [http://127.0.0.1/galleries/10] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:11:12) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:22:55) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` GalleryMedia Load (0.000000) SELECT * FROM `gallery_medias` WHERE (`gallery_medias`.`id` = 1)  ActionView::TemplateError (undefined method `filename_temp' for #) on line #43 of galleries/new.html.erb: 40:

41: 42: <% @entry = GalleryMedia.find(1) %> 43: <%= file_column_field "entry", "filename" %> 44: 45: 46:

/usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/attribute_methods.rb:205:in `method_missing' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:562:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:562:in `value_before_type_cast' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:550:in `value_before_type_cast' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:465:in `to_input_field_tag' vendor/plugins/file_column/lib/file_column_helper.rb:26:in `file_column_field' app/views/galleries/new.html.erb:43:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:248:in `fields_for' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:184:in `form_for' app/views/galleries/new.html.erb:5:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:31:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:23:14) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` GalleryMedia Load (0.000000) SELECT * FROM `gallery_medias` WHERE (`gallery_medias`.`id` = 1)  ActionView::TemplateError (undefined method `filename_temp' for #) on line #43 of galleries/new.html.erb: 40:

41: 42: <% @entry = GalleryMedia.find('1') %> 43: <%= file_column_field "entry", "filename" %> 44: 45: 46:

/usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/attribute_methods.rb:205:in `method_missing' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:562:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:562:in `value_before_type_cast' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:550:in `value_before_type_cast' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:465:in `to_input_field_tag' vendor/plugins/file_column/lib/file_column_helper.rb:26:in `file_column_field' app/views/galleries/new.html.erb:43:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:248:in `fields_for' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/helpers/form_helper.rb:184:in `form_for' app/views/galleries/new.html.erb:5:in `_run_erb_47app47views47galleries47new46html46erb' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:637:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:31:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:23:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new GalleryMedia Columns (0.003000) SHOW FIELDS FROM `gallery_medias` GalleryMedia Load (0.001000) SELECT * FROM `gallery_medias` WHERE (`gallery_medias`.`id` = 1)  Completed in 0.03600 (27 reqs/sec) | Rendering: 0.02100 (58%) | DB: 0.00900 (24%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:23:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:23:50) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "entry"=>{"medianame_temp"=>"", "medianame"=>#}, "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"654aaaa"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` SQL (0.000000) BEGIN Gallery Create (0.001000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:23:50', 'Artwork', NULL, '654aaaa', '2008-06-28 18:23:50') SQL (0.034000) COMMIT Redirected to http://127.0.0.1:3000/galleries/11 Completed in 0.04800 (20 reqs/sec) | DB: 0.03800 (79%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:23:50) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"11", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 11)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01400 (71 reqs/sec) | Rendering: 0.00300 (21%) | DB: 0.00300 (21%) | 200 OK [http://127.0.0.1/galleries/11] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:23:50) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:24:59) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new GalleryMedia Columns (0.003000) SHOW FIELDS FROM `gallery_medias` GalleryMedia Load (0.001000) SELECT * FROM `gallery_medias` WHERE (`gallery_medias`.`id` = 7)  Completed in 0.03700 (27 reqs/sec) | Rendering: 0.02300 (62%) | DB: 0.00700 (18%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:25:00) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:25:52) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "entry"=>{"medianame_temp"=>"", "medianame"=>#}, "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"654aaaa"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.008000) SHOW FIELDS FROM `galleries` SQL (0.001000) BEGIN Gallery Create (0.000000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:25:53', 'Artwork', NULL, '654aaaa', '2008-06-28 18:25:53') SQL (0.053000) COMMIT Redirected to http://127.0.0.1:3000/galleries/12 Completed in 0.07300 (13 reqs/sec) | DB: 0.06200 (84%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:25:53) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"12", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.004000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 12)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00200 (11%) | DB: 0.00600 (35%) | 200 OK [http://127.0.0.1/galleries/12] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:25:53) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:31:26) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new ERROR: compiling _run_erb_47app47views47galleries47new46html46erb RAISED compile error /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:56: syntax error, unexpected kEND, expecting $end Function body: def _run_erb_47app47views47galleries47new46html46erb(local_assigns) _erbout = ''; _erbout.concat "\t

New Gallery

\n" _erbout.concat "\n" _erbout.concat "\t"; _erbout.concat(( error_messages_for :gallery ).to_s); _erbout.concat "\n" _erbout.concat "\n" _erbout.concat "\t"; form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| ; _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t Title
\n" _erbout.concat "\t "; _erbout.concat(( f.text_field :sTitle, :class=>"textbox" ).to_s); _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t Description
\n" _erbout.concat "\t "; _erbout.concat(( f.text_area :tDescription, :class=>"textbox" ).to_s); _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t Type
\n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t

\n" _erbout.concat "\t File Upload
\t \n" _erbout.concat "\t \n" _erbout.concat "\t\t

\n" _erbout.concat "\t\t \n" _erbout.concat "\t

\t \n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t Media Upload
\t \n" _erbout.concat "\t \n" _erbout.concat "\t\t

\n" _erbout.concat "\t\t \n" _erbout.concat "\t

\t \n" _erbout.concat "\t \n" _erbout.concat "\t \n" _erbout.concat "\n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t "; _erbout.concat(( f.submit "Create" ).to_s); _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t"; end ; _erbout.concat "\n" _erbout.concat "\t\n" _erbout.concat "\t"; _erbout.concat(( form_tag({:action=>'create_art_image', :id=> @art_image}, :multipart => true)).to_s); _erbout.concat "\n" _erbout.concat " \t"; _erbout.concat(( file_column_field "art_image", "medianame" ).to_s); _erbout.concat "\n" _erbout.concat " "; end ; _erbout.concat "\n" _erbout.concat "\n" _erbout.concat "\t"; _erbout.concat(( link_to 'Back', :controller => 'gallery', :action => 'manage' ).to_s); _erbout.concat "\n" _erbout end Backtrace: /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:56:in `compile_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:630:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' /home/Falcon-/Rails/portfolio/app/controllers/galleries_controller.rb:33:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 ActionView::TemplateError (compile error /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:56: syntax error, unexpected kEND, expecting $end) on line #56 of galleries/new.html.erb: 53: 54: <%= link_to 'Back', :controller => 'gallery', :action => 'manage' %> app/views/galleries/new.html.erb:56:in `compile_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:630:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:33:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:31:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00600 (35%) | DB: 0.00200 (11%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:31:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:33:11) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new ERROR: compiling _run_erb_47app47views47galleries47new46html46erb RAISED compile error /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:50: syntax error, unexpected ')' _erbout.concat "\t"; _erbout.concat(( form_tag({:action=>'create_art_image', :id=> @art_image}, :multipart => true) do |f| ).to_s); _erbout.concat "\n" ^ /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:57: syntax error, unexpected kEND, expecting ')' Function body: def _run_erb_47app47views47galleries47new46html46erb(local_assigns) _erbout = ''; _erbout.concat "\t

New Gallery

\n" _erbout.concat "\n" _erbout.concat "\t"; _erbout.concat(( error_messages_for :gallery ).to_s); _erbout.concat "\n" _erbout.concat "\n" _erbout.concat "\t"; form_for(@gallery, { :action => 'do_file_upload' }, :html => {:multipart => true}) do |f| ; _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t Title
\n" _erbout.concat "\t "; _erbout.concat(( f.text_field :sTitle, :class=>"textbox" ).to_s); _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t Description
\n" _erbout.concat "\t "; _erbout.concat(( f.text_area :tDescription, :class=>"textbox" ).to_s); _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t Type
\n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t

\n" _erbout.concat "\t File Upload
\t \n" _erbout.concat "\t \n" _erbout.concat "\t\t

\n" _erbout.concat "\t\t \n" _erbout.concat "\t

\t \n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t Media Upload
\t \n" _erbout.concat "\t \n" _erbout.concat "\t\t

\n" _erbout.concat "\t\t \n" _erbout.concat "\t

\t \n" _erbout.concat "\t \n" _erbout.concat "\t \n" _erbout.concat "\n" _erbout.concat "\t \n" _erbout.concat "\t

\n" _erbout.concat "\t "; _erbout.concat(( f.submit "Create" ).to_s); _erbout.concat "\n" _erbout.concat "\t

\n" _erbout.concat "\t"; end ; _erbout.concat "\n" _erbout.concat "\t\n" _erbout.concat "\t"; _erbout.concat(( form_tag({:action=>'create_art_image', :id=> @art_image}, :multipart => true) do |f| ).to_s); _erbout.concat "\n" _erbout.concat " \t"; _erbout.concat(( file_column_field "art_image", "medianame" ).to_s); _erbout.concat "\n" _erbout.concat " \t"; f.submit "test" ; _erbout.concat "\n" _erbout.concat " "; end ; _erbout.concat "\n" _erbout.concat "\n" _erbout.concat "\t"; _erbout.concat(( link_to 'Back', :controller => 'gallery', :action => 'manage' ).to_s); _erbout.concat "\n" _erbout end Backtrace: /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:57:in `compile_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:630:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' /home/Falcon-/Rails/portfolio/app/controllers/galleries_controller.rb:33:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 ActionView::TemplateError (compile error /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:50: syntax error, unexpected ')' _erbout.concat "\t"; _erbout.concat(( form_tag({:action=>'create_art_image', :id=> @art_image}, :multipart => true) do |f| ).to_s); _erbout.concat "\n" ^ /home/Falcon-/Rails/portfolio/app/views/galleries/new.html.erb:57: syntax error, unexpected kEND, expecting ')') on line #50 of galleries/new.html.erb: 47:

48: <% end %> 49: 50: <%= form_tag({:action=>'create_art_image', :id=> @art_image}, :multipart => true) do |f| %> 51: <%= file_column_field "art_image", "medianame" %> 52: <% f.submit "test" %> 53: <% end %> app/views/galleries/new.html.erb:57:in `compile_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:630:in `compile_and_render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:365:in `render_template' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_view/base.rb:316:in `render_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1100:in `render_for_file' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:858:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:131:in `custom' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `call' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:156:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `each' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:150:in `respond' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/mime_responds.rb:107:in `respond_to' app/controllers/galleries_controller.rb:33:in `new' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:33:56) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01600 (62 reqs/sec) | Rendering: 0.00600 (37%) | DB: 0.00200 (12%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:33:56) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create_art_image (for 127.0.0.1 at 2008-06-28 18:34:03) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"commit"=>"test", "art_image"=>{"medianame_temp"=>"", "medianame"=>#}, "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create_art_image", "controller"=>"galleries"} NoMethodError (You have a nil object when you didn't expect it! You might have expected an instance of ActiveRecord::Base. The error occurred while evaluating nil.[]): /app/controllers/galleries_controller.rb:45:in `create_art_image' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:37:10) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"show", "id"=>"create_art_image", "controller"=>"galleries"} Gallery Columns (0.004000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 0)  ActiveRecord::RecordNotFound (Couldn't find Gallery with ID=create_art_image): /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1267:in `find_one' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1250:in `find_from_ids' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:504:in `find' /app/controllers/galleries_controller.rb:18:in `show' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:39:52) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00400 (26%) | DB: 0.00700 (46%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:39:52) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:40:02) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00500 (29%) | DB: 0.00200 (11%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:40:02) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:40:48) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00400 (26%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:40:48) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:40:55) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.003000) SHOW FIELDS FROM `gallery_medias` NoMethodError (undefined method `0=' for #): /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/attribute_methods.rb:200:in `method_missing' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `send' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `each' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1926:in `initialize' /app/controllers/galleries_controller.rb:58:in `new' /app/controllers/galleries_controller.rb:58:in `create' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:41:14) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01800 (55 reqs/sec) | Rendering: 0.00600 (33%) | DB: 0.00700 (38%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:41:14) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:41:17) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"commit"=>"Create", "gallery_media"=>{"0"=>"", "medianame"=>#, "medianame_temp"=>""}, "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN GalleryMedia Create (0.000000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:41:18', '00253.jpg', NULL, '2008-06-28 18:41:18') SQL (0.045000) COMMIT NoMethodError (undefined method `0=' for #): /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/attribute_methods.rb:200:in `method_missing' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `send' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `each' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1926:in `initialize' /app/controllers/galleries_controller.rb:58:in `new' /app/controllers/galleries_controller.rb:58:in `create' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:41:59) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"commit"=>"Create", "gallery_media"=>{"0"=>"", "medianame"=>#, "medianame_temp"=>""}, "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` NoMethodError (undefined method `0=' for #): /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/attribute_methods.rb:200:in `method_missing' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `send' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `each' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1926:in `initialize' /app/controllers/galleries_controller.rb:52:in `new' /app/controllers/galleries_controller.rb:52:in `create' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:42:29) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"commit"=>"Create", "gallery_media"=>{"0"=>#, "1"=>"", "medianame"=>#, "medianame_temp"=>""}, "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_files"=>{"0"=>#, "1"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryFiles Columns (0.003000) SHOW FIELDS FROM `gallery_files` SQL (0.001000) BEGIN GalleryFiles Create (0.001000) INSERT INTO `gallery_files` (`gallery_id`, `updated_at`, `filename`, `sDescription`, `sTitle`, `created_at`) VALUES(0, '2008-06-28 18:42:29', '014_finished_2.jpg', NULL, NULL, '2008-06-28 18:42:29') SQL (0.048000) COMMIT GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.001000) BEGIN GalleryMedia Create (0.001000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:42:29', '00271.jpg', NULL, '2008-06-28 18:42:29') SQL (0.054000) COMMIT SQL (0.000000) BEGIN GalleryMedia Create (0.000000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:42:29', '00253.jpg', NULL, '2008-06-28 18:42:29') SQL (0.046000) COMMIT NoMethodError (undefined method `0=' for #): /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/attribute_methods.rb:200:in `method_missing' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `send' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2117:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `each' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:2116:in `attributes=' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1926:in `initialize' /app/controllers/galleries_controller.rb:58:in `new' /app/controllers/galleries_controller.rb:58:in `create' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/1.8/benchmark.rb:293:in `measure' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache' /usr/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:43:33) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01700 (58 reqs/sec) | Rendering: 0.00600 (35%) | DB: 0.21500 (1264%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:43:33) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:43:41) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_media2"=>{"medianame_temp"=>"", "medianame"=>#}, "gallery_files"=>{"0"=>#, "1"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryFiles Columns (0.002000) SHOW FIELDS FROM `gallery_files` SQL (0.000000) BEGIN GalleryFiles Create (0.001000) INSERT INTO `gallery_files` (`gallery_id`, `updated_at`, `filename`, `sDescription`, `sTitle`, `created_at`) VALUES(0, '2008-06-28 18:43:41', '8b42af87.jpg', NULL, NULL, '2008-06-28 18:43:41') SQL (0.039000) COMMIT GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.001000) BEGIN GalleryMedia Create (0.001000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:43:41', '00244.jpg', NULL, '2008-06-28 18:43:41') SQL (0.035000) COMMIT SQL (0.001000) BEGIN Gallery Create (0.001000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:43:41', 'Artwork', NULL, 'asdfasdf', '2008-06-28 18:43:41') SQL (0.043000) COMMIT Redirected to http://127.0.0.1:3000/galleries/13 Completed in 0.68200 (1 reqs/sec) | DB: 0.12800 (18%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:43:41) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"13", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 13)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01400 (71 reqs/sec) | Rendering: 0.00200 (14%) | DB: 0.00300 (21%) | 200 OK [http://127.0.0.1/galleries/13] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:43:42) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#new (for 127.0.0.1 at 2008-06-28 18:43:51) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"action"=>"new", "controller"=>"galleries"} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` Rendering template within layouts/main Rendering galleries/new Completed in 0.01500 (66 reqs/sec) | Rendering: 0.00400 (26%) | DB: 0.00300 (20%) | 200 OK [http://127.0.0.1/galleries/new] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:43:51) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:43:55) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_media2"=>{"medianame_temp"=>"", "medianame"=>#}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.001000) BEGIN Gallery Create (0.001000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:43:55', 'Artwork', NULL, 'asdfasdf', '2008-06-28 18:43:55') SQL (0.033000) COMMIT Redirected to http://127.0.0.1:3000/galleries/14 Completed in 0.21600 (4 reqs/sec) | DB: 0.03900 (18%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:43:55) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"14", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.000000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 14)  Rendering template within layouts/main Rendering galleries/show Completed in 0.01400 (71 reqs/sec) | Rendering: 0.00200 (14%) | DB: 0.00200 (14%) | 200 OK [http://127.0.0.1/galleries/14] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:43:55) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:44:31) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>#, "2"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_media2"=>{"medianame_temp"=>"", "medianame"=>#}, "gallery_files"=>{"0"=>""}} Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.003000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN GalleryMedia Create (0.000000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:44:32', '100_0225.jpg', NULL, '2008-06-28 18:44:32') SQL (0.043000) COMMIT SQL (0.000000) BEGIN GalleryMedia Create (0.000000) INSERT INTO `gallery_medias` (`gallery_id`, `tDescription`, `updated_at`, `medianame`, `sTitle`, `created_at`) VALUES(0, NULL, '2008-06-28 18:44:32', '00259.jpg', NULL, '2008-06-28 18:44:32') SQL (0.051000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.001000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:44:32', 'Artwork', NULL, 'asdfasdf', '2008-06-28 18:44:32') SQL (0.039000) COMMIT Redirected to http://127.0.0.1:3000/galleries/15 Completed in 0.74800 (1 reqs/sec) | DB: 0.14000 (18%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:44:32) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"15", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.001000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 15)  Rendering template within layouts/main Rendering galleries/show Completed in 0.04700 (21 reqs/sec) | Rendering: 0.00300 (6%) | DB: 0.00300 (6%) | 200 OK [http://127.0.0.1/galleries/15] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:44:32) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found) Processing GalleriesController#create (for 127.0.0.1 at 2008-06-28 18:49:13) [POST] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {"gallery_media"=>{"0"=>#, "1"=>""}, "commit"=>"Create", "authenticity_token"=>"77bf7dcdf5911187f36a73bacd3e203a9f4254c6", "action"=>"create", "controller"=>"galleries", "gallery"=>{"tDescription"=>"", "sType"=>"Artwork", "sTitle"=>"asdfasdf"}, "gallery_media2"=>{"medianame_temp"=>"", "medianame"=>""}, "gallery_files"=>{"0"=>""}} WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql). SQL (0.001000) SET SQL_AUTO_IS_NULL=0 Gallery Columns (0.003000) SHOW FIELDS FROM `galleries` GalleryMedia Columns (0.002000) SHOW FIELDS FROM `gallery_medias` SQL (0.000000) BEGIN SQL (0.000000) COMMIT SQL (0.000000) BEGIN Gallery Create (0.001000) INSERT INTO `galleries` (`engineering_id`, `tDescription`, `updated_at`, `sType`, `artwork_id`, `sTitle`, `created_at`) VALUES(NULL, '', '2008-06-28 18:49:13', 'Artwork', NULL, 'asdfasdf', '2008-06-28 18:49:13') SQL (0.041000) COMMIT Redirected to http://127.0.0.1:3000/galleries/16 Completed in 0.33900 (2 reqs/sec) | DB: 0.04800 (14%) | 302 Found [http://127.0.0.1/galleries] Processing GalleriesController#show (for 127.0.0.1 at 2008-06-28 18:49:14) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7BjoLbm90aWNlIiZHYWxsZXJ5IHdhcyBzdWNjZXNzZnVsbHkgY3JlYXRl%0AZC4GOgpAdXNlZHsGOwdU--89e26af3b89566491292b2f14082fed684a3c064 Parameters: {"action"=>"show", "id"=>"16", "controller"=>"galleries"} Gallery Columns (0.002000) SHOW FIELDS FROM `galleries` Gallery Load (0.000000) SELECT * FROM `galleries` WHERE (`galleries`.`id` = 16)  Rendering template within layouts/main Rendering galleries/show Completed in 0.02200 (45 reqs/sec) | Rendering: 0.01000 (45%) | DB: 0.00200 (9%) | 200 OK [http://127.0.0.1/galleries/16] Processing ApplicationController#index (for 127.0.0.1 at 2008-06-28 18:49:14) [GET] Session ID: BAh7BzoMY3NyZl9pZCIlZWQ0NjliNDJiMTliZDdlMTUyZTYyMWMxMmQ3OGI2%0AODMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%0Ac2h7AAY6CkB1c2VkewA%3D--2488dbf0f5ca3a2ab84b9227cc27d2c90b34e4af Parameters: {} ActionController::RoutingError (No route matches "/stylesheets/MultiUpload.css" with {:method=>:get}): /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1441:in `recognize_path' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/routing.rb:1424:in `recognize' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:170:in `handle_request' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi' /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66 /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' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in' /usr/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require' /usr/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39 /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 /usr/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (not_found)