search for: cookieoverflow

Displaying 4 results from an estimated 4 matches for "cookieoverflow".

2008 Jul 09
3
CookieOverflow - 4k Session?
Hello all, I get the following error when I stuff my seesion with more than 4k of data. CGI::Session::CookieStore::CookieOverflow My problem is that I obviously need a fatter session. How do other users by-pass the 4k restriction on session variables? Regards, John --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"...
2009 Apr 20
1
Upgrading rails to 2.3.2 - CookieOverflow issue
Folks, I am trying to upgrade system from rails 1.3.x to 2.3.2 and getting this error - Status: 500 Internal Server Error ActionController::Session::CookieStore::CookieOverflow /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/ session/cookie_store.rb:102:in `call'' /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/ reloader.rb:9:in `call'' /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/ fai...
2007 Mar 30
0
Storing an order object in a cookie based session
...ct is contructed, and stored in the session (if it passes validation). The is sent to another page where they can confirm all their info and press the "finalize order" button. The problem is that the order object is too large to fit in the session, and I get a CGI::Session::CookieStore::CookieOverflow exception. The addresses and other customer data overflow the 4k limit. So, without switching session stores, whats the best way to fix this? I don''t really want to store the order object in the session, but it seemed like the easiest option. I thought about only storing the posted par...
2011 May 19
3
Cookie Overflow at CSV import
...my CSV I do a delayed background call from a webservice and the result is then saved to my database. This is working great! Now I tried a CSV file with over 400 rows. After clicking import in my form it takes some time and then I get the following error message: ''ActionDispatch::Cookies::CookieOverflow''. But nevertheless 300 of the 400 jobs are already created in my delayed_jobs table. The code below is copied from other threads, so I don''t really know where I save something in cookies. I guess it is at ''file.tempfile'' in the controller, but I am not sure. Ho...