Tagged Questions
0
votes
1answer
36 views
Capture http_referer no matter which landing page
Right now, I capture http_referrer within each of my controller actions, such as:
class PostsController < ApplicationController
def new
referer = request.referer
end
However, I would ...
0
votes
2answers
55 views
Detecting url user visited before coming to my site in Rails
I would like to save the url that user visited right before landing to my site. How should I do it in Rails?
I tried
request.env["HTTP_REFERER"] but couldn't retrieve the previous url.
May be this ...
1
vote
1answer
110 views
Display different view if visitor is from Google search
I am trying to accomplish something similar to the New York Times and other newsites that show full articles when a visitor is referred from Google but only shows the preview if it is a direct visit.
...
4
votes
3answers
2k views
how to get referrer from a redirected url
I have an url
domain.com/a
which redirects to
domain.com/controller/action/a .
How do I get the referrer (i.e domain.com/a) in my action for domain.com/controller/action/a ?
One option was to ...
1
vote
0answers
262 views
Set Referrer Information on Rails Redirect
I'm working on a Rails app that redirects users from my Rails app to an outside site. I'd like to be able to track those users that arrived from my Rails app to that site, but on Google Analytics all ...
12
votes
2answers
10k views
How to save http referer in rails
I'm trying to save the site that a user came from when they sign up. Right now I have a before_filter in my ApplicationController:
before_filter :save_referer
def save_referer
unless ...