I have an old cakephp-1.2 application in production. This system has a screen where html content can be edited using ckeditor 3.2. The problem is that almost every time when I try to edit some html content I got logged out when submitting the form, the content is not saved when this happens.
Interesting enough I go to edit some html content and make no changes at all in ckeditor then hitting submit sometimes I got logged out and sometimes it works as expected.
https
? I'm not sure with Cake1.2, but at least with later versions, depending on Session configuration you may loose session if you are logged in underhttps
and you make some requests tohttp
. Would CKEditor make random requests tohttp
? – Ruffianism