You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have some problems to setup a simple evercookie site pretty similar to the example dummy App.
If i start the Sever on Localhost:3000 i get the Index site and if i try to get oder set a Cookie, it fails. For example if i try to set a Cookie and sumbit the form i have some error in the console. (500 Internal Server Error - for etag, cache, auth, png)
Furthermore i can see, that the set.js file does not contains any information from <%= @data[:key] -%>', '<%= @data[:value] -%> and this leads to ec.set('', '')
My setup is the following. After successful signup page view has:
set_evercookie(:uid,current_user.id)
Registration form view has:
check_evercookie(:uid)
And controller action handling registration has:
ever_value=evercookie_get_value(:uid)
After signup I am setting signed up user ID. Since it's stored on client side on registration form I include helper that adds JS for fetching evercookie value and pass it to controller in order to save in session. And registration controller action checks session for value that was set in previous step.
Hope it helps
Hey,
i have some problems to setup a simple evercookie site pretty similar to the example dummy App.
If i start the Sever on Localhost:3000 i get the Index site and if i try to get oder set a Cookie, it fails. For example if i try to set a Cookie and sumbit the form i have some error in the console. (500 Internal Server Error - for etag, cache, auth, png)
Furthermore i can see, that the set.js file does not contains any information from
<%= @data[:key] -%>', '<%= @data[:value] -%>
and this leads to ec.set('', '')Versions:
rvm - 1.29.4 (set rails as default)
gem - 2.7.7
rails - 5.2.1
bundler - 1.16.2
The text was updated successfully, but these errors were encountered: