miriamraphael / yahoo.com wrote: > I am writing my first rails script and am having lots of trouble doing > the simplest tasks. > Right now, I have a form (new.rhtml) and it allows someone to become a > new user by entering their info (username, password, name, etc). Use .save! instead of .save. .save returns false on failure, .save! raises an Exception.