Tagged Questions
1
vote
1answer
15 views
In Rails 3, how can I save user search history to the database with no membership/authentication system?
Currently, the site is storing "previously viewed items" via cookies.
I need to take that a step further and not only store those items in the database, but save the user's most recent search, so ...
0
votes
1answer
22 views
Check if signed cookie exists
I have a controller from which I create a cookie with information about a game I'm developing. The problem I'm having is that the value changes when I use another action inside that controller.
This ...
0
votes
3answers
55 views
Rails 3 session & cookie how to persist session id cookie
I am developing a simple shopping cart based on session_id i.e. for determination of a user cart items used session_id.
But when user closes a browser and then opens it again a session id is been ...
0
votes
0answers
41 views
Sharing session across rails apps on different subdomains
I am trying to implement a single-sign-on solution for multiple rails (v3.2) apps hosted at different subdomains of example.com
One app serves as an identity provider, uses devise for auth, and sits ...
0
votes
1answer
25 views
Disable Cookies on initial page load until user agrees to use them
I am using this answer here to log unique page views in my app: http://stackoverflow.com/a/15174466/1235816
I am using a cookie to check for unique visits. As far as I am aware, because the site will ...
5
votes
1answer
61 views
Maintaining Cookies when switching EC2 instances Ruby on Rails
My team is coming to the end of a massive overhaul of changes to our system and are getting ready to do the big switch.
Currently, we are hosted on AWS using Elastic IPs. Our stack is Ruby on Rails ...
0
votes
1answer
25 views
Rails: Sign in Users with just an email using Devise
Here is my situation. I am letting users to sign up in a landing page so that when the page is launched we can contact them. They are just entering their email.
What I am looking for is to ...
0
votes
0answers
11 views
Any issues using cookies to track state on mobile devices?
I'm creating a web app that is also engineered for mobile device viewing (phones and tablets). One of the major functions of the app is an image slider that scrolls through individual full-screen ...
0
votes
0answers
29 views
Referencing Cookie with jQuery in content_for tag — Uncaught ReferenceError: $ is not defined
I am trying to reference my cookie inside a content_for tag. I keep getting the error -
Uncaught ReferenceError: $ is not defined.
I have the following snippet of code:
<% content_for ...
0
votes
2answers
24 views
Showing if someone is reading a post
I want to show the list of people who are reading a post.
Before attempting to implement the function, I wanted to ask for some advice. I would start by checking users who invoke the show action in ...
1
vote
1answer
49 views
Where to set a tracking (permanent) cookie in Rails?
I'm trying to track an "anonymous" user's actions and eventually associate them with his/her account once he/she registers. I figured I'd do this by setting a permanent cookie. My best option is to ...
0
votes
2answers
48 views
Managing Multiple Access to a User account in a web app using Cookie
In may Rails web application, I need to enable more control in user authentication like if a user after registration will have specific credentials to login. So he/she should be able to login from a ...
1
vote
2answers
92 views
Share one single cookie through subdomains
I have a blogs subdomain that works well, however, the signin is detached from all subdomains, and consequently, if a user signs in his cookie is only valid on the non-subdomain pages. How can I set ...
1
vote
2answers
42 views
Rails 3 cookies undefined
I have a Rails 3 blog. I want every Post to have a "Like" button. Clicking on it will save this action to the database and store to cookies on the user who has just liked the Post (for disallowing ...
1
vote
1answer
107 views
Rails - Store a cookie in controller and get from Javascript, Jquery
Is it possible to store a User's Cookie or Session in Controller and Get the cookie by accessing it from JS or Jquery?
0
votes
0answers
29 views
Cookies store seems to be not initialized
I have rails 3.1 app with ruby 1.9.3-p286. In one of my before filters in ApplicationController I have session_create_params = {deviceId: cookies.signed[:device_id]}
When I'm calling some of my ...
1
vote
2answers
41 views
Separate table for cookies?
I've just started Rails from a php background and I'm following this tutorial: http://ruby.railstutorial.org/chapters/sign-in-sign-out#top
At section 8.2.1- You have to add remember_token to the ...
0
votes
1answer
29 views
Rails Cookie Detection Script Fails
I wanted to make sure that users have cookies enabled for my site, so I used this guide.
However, when I run my server, I gut this error:
syntax error, unexpected $end, expecting keyword_end
...
0
votes
0answers
37 views
Deleting cookies acting differently in production vs staging and development
I'm wanting to clear all the cookies for my site when someone visit 'https://www.foo.com/sign_up?utm_source=conference'. So I've written this:
cookies.each {|k,*| cookies.delete(k) } if ...
0
votes
1answer
54 views
Set a cookie from view, then read it from Controller in Rails
I would like to set cookie value from within Rails view using Javascript, then use Controller to read this cookie. Is this possible with Rails, and how should I go about it?
My situation: I have an ...
0
votes
0answers
23 views
Adding Omniauth information to session in Rails
I am implementing a custom sign up process with different services (linkedin, facebook etc.) using Devise and Omniauth:
If user clicks "Sign up with twitter", Omniauth will redirect to /auth/twitter, ...
4
votes
3answers
378 views
Cookies vs Sessions with CookieStore
In Rails 3, what is the difference between storing data in a cookie and storing data in a session, with the session store set to the default of CookieStore?
e.g.
cookie[:foo] = 'bar'
# ...
1
vote
1answer
67 views
Cookies not working in IE or Firefox
I have a Rails 3.2.8 and Ruby 1.9.3 app.
I'm trying to set a cookie like so:
cookies['role'] = {
:value => params['commit'],
:expires => Time.now + 30.days,
}
It works fine in ...
1
vote
1answer
54 views
how to make rails-issued cookie work cross subdomain
I am having a situation when I am trying to make a RAILS application to be the backend core of my APIs. I am using 'devise' to authenticate the users, which does by putting a session cookie. This is ...
0
votes
1answer
47 views
Sessions in rails - dynamic
I have asked similar question here
Now I am having last problem.
I use:
config.action_controller.session_store = :cookie_store
with
ActionController::Base.session = {
#:domain => ...
1
vote
1answer
98 views
Rails Session Management
I am trying to implement remember me option for login based on the code that I inherited.
I have following:
def login
if request.post?
if params[:remember_me]
# this is where user checked the ...
3
votes
1answer
125 views
Setting Rails cookie to expire in 1 day
Looking through the docs here http://api.rubyonrails.org/classes/ActionDispatch/Cookies.html, and setting a Rails cookie as follows:
cookies[:votes_left] = { :value => 3, :expires => ...
0
votes
1answer
26 views
Cookie set to subdomain when :all option is used
In my session controller, I want to set a cookie when user logs-in.
Say I visit http://buy.example.com/login, and the controller will handle the login as well as the cookie setting like the ...
0
votes
1answer
83 views
Rails: How to troubleshoot cookies that won't expire?
Followed, for the most part, Railscast #274 - Remember Me to set a remember me token in my Rails app and although cookies are "working" there seems to be no difference between cookies.permanent[…] = … ...
0
votes
1answer
89 views
Setting timezone on Rails from clientside using javascript
I have a webapp that sets timezone
post_controller.rb
before_filter :set_time_zone
def set_time_zone
Time.zone = user.time_zone
end
Now, instead of getting the time_zone from the user at ...
0
votes
1answer
223 views
Set a Rails/Ruby variable using Javascript via Ajax
In my nav-list, I have a drop box selection that contains all users, exclusively available to an administrator. The administrator can select a user, and the view is updated via ajax to display the ...
0
votes
1answer
125 views
Rails not sending session cookies to JSON request
I am using Rails 3.2.8. I want to access a record from the application do some processing and return the results in the form of a modified record. I am doing this through json requests to the ...
0
votes
1answer
245 views
Keep session alive after closing browser.
How can i do, that after user add something to shopping cart, and leave browser (close) after reopening rails recover it's session, and user can shop more...
Now I have such
class ...
2
votes
2answers
131 views
How do I create a button that increments an attribute of a model and can be pressed once per browser?
An apartment_listing has many reviews, and a review belongs to an apartment_listing.
In the file views/apartment_listings/show.html.erb, I show a list of reviews for that particular ...
1
vote
2answers
66 views
How can I logoff a specific user in a Devise powered Rails app?
By default, the mechanism in Rails seems to be setting a session cookie, to keep track if a user's logged in or not. While this would ensure that a user is logged off when he closes the browser, I ...
0
votes
1answer
66 views
How do I set a cookie for an integration test in Rails?
I have general application behavior that changes based on cookie contents, and need to test it. As an example, if a user doesn't have a cookie set indicating that they've accepted the site's legal ...
0
votes
1answer
58 views
Rails: Where is message digest of sessions using default CookieStore
According to this question, session can be edited by user. But this answer suggests it's safe to store user id.
From Rails document
A message digest is included with the cookie to ensure data ...
2
votes
3answers
72 views
How to share session from a subdomain to another subdomain?
I have a login form that points to secure.example.com, it initializes the session and then redirects to www.example.com
When redirected, the session is not created. Going back to secure.example.com ...
1
vote
1answer
42 views
Unable to create cookie if it has a domain
My controller has the following code
cookies[:book] = { :value => "Kids Puzzles", :expires => 2.years.from_now, :domain => "foo.com" }
Unable to create cookie if it has a domain which is ...
1
vote
1answer
80 views
I changed the domain option in the session_store config, and now previous users can't login or signup without clearing their cookies
I have a rails 3.2.8 app that users devise for users_sessions. It previously had a config/initializers/session_store.rb file that looked like:
AppName::Application.config.session_store ...
1
vote
0answers
134 views
Rails and Cross Domain Cookies
I am having a problem with ajax and cookies with rails. My current setup is as follows:
I have one application setup at domainfoo.com which is a Rails application and a static web page setup at ...
1
vote
1answer
159 views
Hash of hashes of arrays of hashes, Itunes wishlist
Cheers! Please, help me to solve the problem - I have a cookies, which is hash:
> cookies.keys
=> [:wishlist]
Then:
> cookies[:wishlist].keys
=> ["result_count", "results"]
results ...
0
votes
1answer
47 views
Setting a cookie from a GET param to uniquely identify mobile users
I need to uniquely identify mobile devices on my rails app without user registration.
They will be using a mobile app with an embedded with the default url hardcoded into the app.
I'm thinking of ...
1
vote
0answers
58 views
Implementing music wishlist like hash of hashes
I'm trying to work with itunes rails gem, for example:
>> itunes = ITunes::Client.new
>> songs = itunes.music('green day she')
=> <#Hashie::Rash result_count=15 results=[...]>
...
0
votes
1answer
41 views
Rails: for “post views” function, which of these two options is better?
Post views: initialized as 0, and is incremented when a user reads a post. If the user reads the same post, it should not be incremented.
To implement post view function, I thought of two options.
...
1
vote
0answers
126 views
Path specific cookies in Rails app
I'm working on a minisite generator managed in one app.
Each minisite would have its own authentication.
With subdomains, I'm able to be specifically logged in and have settings for only one ...
0
votes
0answers
68 views
How do I send a dropdown selection in Rails through a post and persist that choice in a session?
I am trying to add what should be a simple feature to a Rails site. There is to be a dropdown menu to select what timezone you want times to be displayed for. Once you have selected the timezone, that ...
1
vote
1answer
187 views
RSpec request object is nil
I'm trying to test for cookies in my request spec:
require 'spec_helper'
describe "Cookies"
it "should set correctly" do
request.cookies['foo'] = 'bar'
end
end
But this gives me undefined ...
0
votes
0answers
40 views
How do I switch to secure cookie for session once user logs in in rails 3.2
Is there a way to use cookies on HTTP, but once user logs limit cookie to HTTPS?
MyApp::Application.config.session_store :cookie_store, :key => '_myapp_session',
...
1
vote
1answer
280 views
Secure session cookie is not set
I'm trying to set the session cookie secure flag to true. I added the following to my environments/production.rb
ActionController::Base.session_options[:secure] = true
In the production mode I ...


