Well I added the google custom search box to my site and I want the results shown on my site, so I created a new template called "gsearch", so I put this code in it:
PHP Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
</head>
<body>
$header
$navbar
<br />
<!-- Google Search Result Snippet Begins -->
<center> <div id="results_000000000000000000000000000000000"></div>
<script type="text/javascript">
var googleSearchIframeName = "results_000000000000000000000000000gc";
var googleSearchFormName = "searchbox_0000000000000000000000000000c";
var googleSearchFrameWidth = 600;
var googleSearchFrameborder = 0;
var googleSearchDomain = "www.google.com";
var googleSearchPath = "/cse";
</script>
<script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script></center>
<!-- Google Search Result Snippet Ends -->
<br />
$footer
</body>
</html>
Now when I'm logged into my site I use the google custom search and I see the results perfectly inside my site,
now when I'm logged out and search this comes up:
"Unable to add cookies, header already sent.
File: /home/content/t/h/o/thowkins/html/TALKFITNESS.ORG/gsearch.php
Line: 8"
Please how do I make it so that the results come up both when logged in and out???
Thanks