I'd like to save the site that a user came from when they sign up. I am interested in the HTTP referer of the first page the user saw on my site before signing up.
How can I implement it?
|
I'd like to save the site that a user came from when they sign up. I am interested in the HTTP referer of the first page the user saw on my site before signing up. How can I implement it? |
||||
|
First, save the referrer to the session. You should probably do this in some kind of middleware:
(Obviously, change yoursite.com etc. as appropriate) Then, in your signup view code, save the referer from the session to your user object. This will, of course, depend on having somewhere to store that info. If you have a custom user object, you can create a field for it. Before Django 1.5, you can use AUTH_PROFILE_MODULE to extend the user class. See https://docs.djangoproject.com/en/dev/topics/auth/customizing/#extending-the-existing-user-model |
||||
|
HTTP refererusing ajax on page load, or send theHttp Refereralong with signup form post data. – Aamir Adnan Jan 4 at 17:10