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)