OK (so as you all guessed I am using a tutorial). I haven't been able to find out where the error is. <br><br>I think the offending code is somewhere on the controller-the code is below:<br><br>class UserController < ApplicationController
<br>def index<br>@title = "Crowded Film User Hub"<br>end<br>def register<br>@title = "Register"<br>if request.post? and params[:user]<br>@user = User.new(params[:user])<br>if @user.save<br>flash[:notice] = "User #{@
user.screen_name} created!"<br>redirect_to :action => "index"<br>end<br>end<br>end<br><br><br>The error I'm getting is below:<br><br><pre>app/controllers/user_controller.rb:14: syntax error, unexpected $end, expecting kEND
</pre><br><br>On other pages I'm seeing this (I guess related) error:<br><pre class="debug_dump">--- !map:HashWithIndifferentAccess <br>action: index<br>controller: site</pre><br>As you can guess I'm way out of my depth. Just hoping to learn a little before I drown :(
<br>