Clarify the registration route. End of file.

I have searched all over the Internet for the answer to this error, but nothing seems to affect it directly or efficiently.

I use Devise in a Rails application, and whenever I go to the users / sign_up page and submit the data, it will not send properly and Rails reports me an error:

"EOFError at / users end of file reached

Rails also includes this trace:

rbuf_fill/Users/john/.rvm/rubies/ruby-2.2.3/lib/ruby/2.2.0/net/protocol.rb BUFSIZE = 1024 * 16 def rbuf_fill begin @rbuf << @io.read_nonblock(BUFSIZE) rescue IO::WaitReadable if IO.select([@io], nil, nil, @read_timeout) retry else raise Net::ReadTimeout 

I was not lucky.

From other posts, I believe that something may be wrong with the setup of the mail program, but I tried all the recommended solutions and I still get this error. I currently have setup.mailer_sender = SUPPORT_EMAIL in the config / initializers / devise.rb file.

I would really appreciate any suggestions that I have, since I spent a lot of time on this without any luck.

+5
source share

All Articles