Earlier i was getting - token not found .After making changes advised here i am getting this new error
Confirmation token can't be blank.
Using rails - 3.0.6 devise - 1.1.3 ruby - 1.9.3
Been banging my head since hours and i am still clueless why the token isn't getting received . This happens only after the user clicks on confirmation link sent via mail . Any pointers what i should be doing. Please help , thanks in advance .
User Model
class User < ActiveRecord::Base
# TODO: Remove talent_seeker from here, set manually on creation
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :first_name, :last_name, :disabled,
:job_title, :company_name, :city, :state, :zip, :public_profile, :willing_to_relocate, :avatar, :resume,
:remove_avatar, :remove_resume, :html_resume_attributes, :upload_in_progress, :rb_resume
end