[fw-general] Re: how to implement WYSIWYG editor on zend framework

2011-05-24 Thread oc
Jurian Sluiman wrote: It's mentioned a few messages back, but here it is: http://juriansluiman.nl/en/blog/article/100/improved-tinymce-solution-for-the- zend-framework Regards, Jurian -- Jurian Sluiman CTO Soflomo V.O.F. http://soflomo.com On Tuesday 02 Mar 2010 12:57:08

Re: [fw-general] Re: how to implement WYSIWYG editor on zend framework

2011-05-24 Thread Jurian Sluiman
On Tuesday 24 May 2011 15:27:59 oc wrote: I have a problem following this tutorial coz Im new in ZF. What I did is this: In my tinymce.ini I copied and paste it in my /application/configs/tinymce.ini and changed the scriptPath to scriptPath = APPLICATION_PATH /../public/js/tiny_mce/ I

Re: [fw-general] Zend Auth: clearIdentity not working for simultaneous requests

2011-05-24 Thread Marco Pivetta
This happens because you're using the session storage, which writes at the end of the request. You can enforce a logout by doing something like: Zend_Auth::getInstance()-clearIdentity(); Zend_Session::close(); That should do the job and commit the logout to the session. Otherwise, you'll have to