I'm attempting to get the referrer URI in Kohana 3.2 using the following code:

$referrer = $this->request->referrer();
var_dump($referrer);

However the function returns NULL, I'm expecting it to return the page I left to get to this one.

Is that how it should work... and if so what am I missing or doing wrong?

This is being run in the Controller.

Documentation here: http://kohanaframework.org/3.2/guide/api/Request#referrer

link|improve this question

Does your Controller extend Controller_Template? If not, it won't have access to $this->request – Joe Sep 12 '11 at 14:46
It extends my own controller template and I can access $this->request. – diggersworld Sep 12 '11 at 14:48
And does that extend the Kohana core Controller_Template? :) – Joe Sep 12 '11 at 14:49
Yes it does, I can access $this->request. – diggersworld Sep 12 '11 at 14:50
The referrer is the URL of the previous webpage from which a link was followed, not just the page I left to get to this one. Do you come from the clicked link? – atma Sep 12 '11 at 14:50
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

The issue I was having was cause by the way my Kohana system is setup. Basically I have a routeHandler in the middle of my system which controls the routes users take. In that script a new request was generated and then executed.

What was happening was when creating the new request object it wasn't having the referrer uri added to it. I have added the following code and now I am able to get the referring uri from the controller at the end of the routing process.

$referrer = $this->request->referrer();
$request = new Request($uri);
$request->referrer($referrer);

echo $request->execute()
             ->send_headers()
             ->body();

Alternatively a cleaner more native solution as suggested by atma is the following:

Request::initial()->referrer()
link|improve this answer
5  
Why you do not do it in kohana way? Request::initial()->referrer() - an easy way for reach the initial request from subrequest that contain referrer. – atma Sep 12 '11 at 15:55
Didn't know about getting it that way. Tried it and it works. So now we have two solutions. =D – diggersworld Sep 13 '11 at 7:45
@atma I suggest you put it as an answer not a comment, so people can upvote it and diggersworld can possibly accept it if he finds it better than his solution. – Michal M Sep 13 '11 at 8:04
@Michal M I do not want to duplicate replies. In this answer there are two solutions, both works well so diggersworld can accept it if he want. – atma Sep 15 '11 at 14:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.