|
When I try to submit question where user is authenticated but not email validated, the data (question or answer) is getting lost...
Is the feature properly defined befause I don't see that question is stored anywhere to retrive back in main system after user validate email. Any help would be great. |
|
I've tried to reproduce the described behavior, but it worked fine for me. The data is stored in session if the user hasn't validated the email and is trying to post a question, you can check that here (line 89, views/writers.py):
Because data is stored in session, it could get lost if you had tried to log out after posting your question. This would result in cleaning the session and lossing the pending submission data from it. On the next log in the session would be clean and nothing would get posted. Thanks, later I managed to work. I was expecting that system would persist somewhere in database. This seems to be a bit problematic when you got two or more servers and working with load balanced. Many thanks again for your efforts.
(18 Dec '11, 13:52)
nilayparikh
|