Tagged Questions
0
votes
1answer
136 views
Rails User tracking activity
I want to track user activity on site. I tried ActiveSupport::Notifications but hasn't user_id or something to define a user. As I see, there are 2 ways to do this: through ActiveRecord queries, and ...
1
vote
2answers
241 views
Complex tracking implementation with mixpanel on Rails and Backbone
My client is looking to set up a complex mixpanel tracking system on their Rails 3.2 app that contains extensive backbone.js functionality.
I want to abstract the mixpanel functionality into some ...
3
votes
2answers
181 views
Prevent Visitors from Voting again
Orginal Question
I want to implement a voting system on my page that is open to visitors and users i.e. non-authenticated users can vote.
Is there a rails/rack (or other) solution to identify ...
0
votes
0answers
54 views
Tracking user changes profile with devise
I want to track changes: if user changes comething in his profile he will see another link.
Here is my code in view:
<% if current_user.changed?%>
<%= link_to "Add another website ...
1
vote
2answers
1k views
Tracking users' clicks and page visits in Rails
I would like to monitor users' page visits and clicks in my Rails app to make recommendations. My questions are:
Is there a Rails gem for this, or Google Analytics is the standard? If latter is ...
2
votes
1answer
171 views
Which data model is optimal for a simple tracker of user views?
Here's more of an academic question for you guys. Say I want to create a model in a ruby on rails app to track simple views information. I would like to record the user_id, the URI for the page ...
2
votes
1answer
150 views
Tracking Page Popularity in a Time Frame in Rails
I'm very new to web development and this seems like a basic question, so perhaps I just lack the correct terminology to search it on Google.
On my site I plan to have many dynamically generated ...
5
votes
2answers
950 views
Rails add parameter to each URL in the application
I would like to add a parameter to each URL in my Rails 2.3.10 application. I played with the default_url_options but I want the parameter to be visible in the URL. Something like:
...
0
votes
1answer
108 views
How to integrate Carrier site using rails application
I am integrating the UPS, USPS, DHL and FEDEX with my rails application.
For that i am using 'trackify' plugin to find the carrier type for given Tracking Number and for also finding the XML response ...
2
votes
2answers
498 views
Tracking impressions/visits per web page
I have a site with several pages for each company and I want to show how their page is performing in terms of number of people coming to this profile.
We have already made sure that bots are ...
2
votes
1answer
352 views
Returning a 1x1 .gif as a response in Rails
I'm building a Rails app that does conversion tracking on outside sites. I'd like to allow users to paste an image tag in their conversion pages (like AdWords), and whenever that image is requested, a ...
0
votes
2answers
319 views
rails — track number of user login
Hey guys,
I'd like to track how many times a user logs in to my site which is a Rails app. Is there any other call like "created_on or updated_on" that can make a little counter in my model that ...
3
votes
2answers
1k views
Tracking User Actions on Rails website
Users will each have a user profile, and he wants each user to know who has viewed their profile. The only way I can think of doing this involves doing a database INSERT every time someone views a ...
3
votes
2answers
2k views
Implementing rental store in Rails: how to track an inventory state over time?
Let's say you're implementing rails app for a snowboard rental store.
A given snowboard can be in one of 3 states:
away for maintenance
available at store X
on loan to customer Y
The company ...
5
votes
1answer
2k views
How to track online users in Rails?
This was always a problem for me, as rails doesn't have some mechanisms for session tracking like java frameworks do, what methods do you use to track who is currently logged on your site? I use a ...