In redmine I am getting 422:invalid authentication token and the logged in name is displayed with other user name instead of login user. There are no steps to reproduce. All of a sudden it occurs and it will be proper when I refresh the link. Please find the attached image for clear scenario. In the attached screenshot login user name is Pavithra but all of a sudden the logged in name will be displayed with other user name (Highlighted in green colour).
相关问题
- mongoid polymorphic association error
- NoMethodError: Undefined method 'type' for
- Rails can't find the module, if config.cache_c
- Generating a query fails for integration of Redmin
- Rails 3 ORDER BY FIELD and last
相关文章
- Is it possible to order multiple columns by using
- Redmine Java Api - org.json.JSONException: A JSONO
- Hstore and Rails
- Rails : How does “new” action called “create” acti
- How to upgrade Rails app from 2.3.5 to 3.2.x?
- Rails send_file don't play mp4
- How do I make config.exceptions_app work with rspe
- What is `stringify_keys' in rails and how to s
I ran into a similar issue for several users. For most of them it was handled via a simple disconnect / connect operation.
But one of them gave me a hard time. It happened all the time with an easy step to reproduce : adding a new block to "my page" constantly resulted in the 422 invalid token error message. No internet solution would give me a clue :
Moreover it happened for any web browser, even a newly installed one. That led me to the user_preferences table in the database. I asked the user if I could reset his preferences and I did it with the following SQL command :
delete from user_preferences where user_id=xx;
where xx is the user ID.After a disconnect / connect, a new block can be added to "my page", the 422 error is gone.