简体   繁体   中英

stack level deep too error

I have installed Ruby 1.9.2 with RVM on my system. When I am trying to start the rails server I am getting the following error:

/Desktop/projects/mod/feedback$ ./script/server 

internal:lib/rubygems/custom_require:29: stack level too deep (SystemStackError)

It works perfectly with ruby 1.8.7.

Thanks for your response. I got the solution for the above issue. Updating my system gem to 1.8.25 would fix my issue.

  gem update --system 1.8.25

The error caused because of your session have less data store length.

If you are using MySQL then just change the column name data(varchar) to data(longtext) inside session table.

This change was solve my problem.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM