Hi I am using Zend_Http_Client with adapter Zend_Http_Client_Adapter_Curl , I tried setting REFERER using

  $client = new Zend_Http_Client('http://www.example.com',array('adapter'=>'Zend_Http_Client_Adapter_Curl');
        $client->getAdapter()->setCurlOption('CURLOPT_REFERER','http://www.google.com');
$client->request('POST');
echo $client->getLastRequest();

In my Request I see all kinds of header getting set except REFERER header ?? It can be done using $client->setHeaders('Referer',$url); also but I am looking for a better way. Thanks.

link|improve this question

1  
What's wrong with setHeaders()? – takeshin Feb 28 '11 at 8:12
actually I will like to know how we can set CUROPT_REFERER for the curl adapter of zend http client. – beginner Feb 28 '11 at 9:51
feedback

1 Answer

up vote 5 down vote accepted

What is interesting about your code is that I just tried to run it and a got errors. So I could not test it. For this reason, I tried another way:

    $adapter = new Zend_Http_Client_Adapter_Curl();
    $adapter->setCurlOption(CURLOPT_REFERER, 'http://www.google.com');

    $client = new Zend_Http_Client('http://www.example.com');      
    $client->setAdapter($adapter);            

    $client->request('POST');
    var_dump($client->getLastRequest());

The above code results in:

string 'GET /domains/example/ HTTP/1.1    
Accept: */*    
Referer: http://www.google.com     <-- THE REFERER
Host: www.iana.org    
Connection: close    
Accept-encoding: gzip, deflate    
User-Agent: Zend_Http_Client


' (length=180)

So in this case it seems Referer header is set correctly.

EDIT: On the OP's request I also tested:

    $adapter = new Zend_Http_Client_Adapter_Curl();

    $client = new Zend_Http_Client('http://www.example.com');
    $client->setAdapter($adapter);

    $client->getAdapter()->setCurlOption(CURLOPT_REFERER, 'http://www.google.com');

    // This line below results in error:  
    // $client->getAdapter()->setCurlOption('referer', 'http://www.google.com');

    $client->request('POST');
    var_dump($client->getLastRequest());

This also works as before.

link|improve this answer
ok thanks for taking time for me, can you plz test it after setting the adapter like $client->getAdapter()->setCurlOption('referer',$url); since thats not working for me – beginner Feb 28 '11 at 11:57
@jason bourne. I updated my answer with the example. – Marcin Feb 28 '11 at 12:34
thanks once again for you kind help .Its CURLOPT_REFERER insted of text , the zend doc sometimes get very confusing . – beginner Feb 28 '11 at 13:40
feedback

Your Answer

 
or
required, but never shown

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