Session problem or Tinymce problem??? |
[eluser]Dennis Rasmussen[/eluser]
Hi Deathcode, You are using a cookie-session with encryption enabled. The encryption of a session gives a bigger size of data than the actual data and a cookie can only hold 4KB of data. So when you try to store a big article in a session (cookie) you exceed the limit and the session won't work. I strongly suggest that you set the configuration to use a database to store your sessions. Read the documentation here: http://ellislab.com/codeigniter/user-gui...sions.html Note: If you must have that much data in a session, there is no other way to fix your issue. You have to store the data in a session that is stored in your database. It is very simple to setup and CodeIgniter will do most of the work for you. |
Messages In This Thread |
Session problem or Tinymce problem??? - by El Forum - 09-29-2010, 10:56 PM
Session problem or Tinymce problem??? - by El Forum - 09-30-2010, 02:29 AM
Session problem or Tinymce problem??? - by El Forum - 10-01-2010, 12:40 AM
Session problem or Tinymce problem??? - by El Forum - 10-01-2010, 06:50 AM
|