When I testing to see if it's working Live, it works with all parameters set, but for my friends with Linux/FreeBSD systems with NS get this:
X11
Warning: Oops, php3_SetCookie called after header has been sent in /home/sleepy/public_html/index.php3 on line 738
And that code is:
if(!isset($HTTP_COOKIE_VARS["Counted"]))
{
HitHist($HTTP_USER_AGENT, $REMOTE_ADDR);
Hits("add");
SetCookie("Counted", "1", time()+86400, "/", "sleepy.linc-up.com", 0);
}
Those other functions there don't print anything and all code above that is just alot of functions and code below is the site design, goes something like this:
print("\n");
print("<head>\n");
...........
So I don't se why the header is already set In NS when it comes to creating the cookie..
jeez, what a big problem this turned out to be...