The error message clearly indicates a problem with the size of the cookie that is overflowing.
Your sessions (by default in the cookie) need to be transferred to the active storage or memcache storage to fix this problem.
For database sessions:
config.action_controller.session_store = :active_record_store
You need to create a session table below
rake db:sessions:create rake db:migrate
OR
For Memcache sessions:
config.action_controller.session_store = :mem_cache_store
You also need to configure the mem cache server and configure it as shown below:
config.cache_store = :mem_cache_store, 'localhost', '127.0.0.1:11211', {:namespace => 'myapp123'}
My God Jan 15 '13 at 10:52 2013-01-15 10:52
source share