Hi, I maintain an e-commerce website powered by Symfony 1.0.8 (www.corporelle.fr). It used an sfShoppingCart stored in user session. An AOL visitor report me than she loosed all the content of her cart, after adding some (3, 4 or 5...) products to it. Then technicaly, it means that the session is losed while redirection (when adding product to cart, there is a redirect) on AOL (which used proxy and has special works in France, it might be the case outside of France, maybe everywhere). It is not systematic.
I look for response of this problem with google and find some answer that advice to use session_write_close() just before http redirect (header location). I test it, it seemps to change nothing to the good works of the website and for the moment, I don't know if it resolve the problem for aol user (if someone has an AOL connection, contact me). I take a look of last version of : - Cake PHP, it used "session_write_close()" in redirect method of controller class (L.388) : https://svn.cakephp.org/repo/trunk/cake/1.1.x.x/cake/libs/controller/ - Zend Fw, it used "session_write_close()" in redirectAndExit method of Redirector Class (L.461) It could be a good ticket for Symfony 1.1, if it improve the reliability of Symfony (for AOL users). To add somewhere in redirect process (session has not to be used after) : > if (function_exists('session_write_close')) > { > session_write_close(); > } -- Sylvain Papet - Développeur Web Agence de communication Com-Océan www.com-ocean.com / +33 4 90 66 48 82 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en -~----------~----~----~----~------~----~------~--~---
