Hi all, I''m having an odd problem with Rails.. I''ve installed via gem.. I run: rails punchclock it creates my punchclock app directory I create a db and a single table "types" defined as: CREATE TABLE types ( id int(10) unsigned NOT NULL auto_increment, description varchar(100) NOT NULL default '''', PRIMARY KEY (id) ) TYPE=MyISAM; I run script/generate scaffold Type Then I run script/server --port=3001 and view via http://localhost:3001/Type I get the list, and I click new.. and it just refreshes.. (doesn''t go to http://localhost:3001/Type/new as it should).. so I force my browser to that address and enter in the description for my new type.. and hit add.. and it also just refreshes and doesn''t add the new "Type".. Has anyone ever run into this problem before? Thanks in advance!