Hi all,
I have a site hosted at Polarhome, and I thank you for the stable free service. My site is located at Mandrake, but I have an account on RedHat as well. So I observe this problem with Mandrake, which is not present at RedHat.
I have a poll, with IP-logging enabled. I store the people's votes plus their IP addresses. This is done in such way:
if($s_iplog != "0")
$ip = $HTTP_SERVER_VARS['REMOTE_ADDR'];{
$q1 = "INSERT INTO poll_iplog (ip,pid,cid) ";
$q1 .= "VALUES ('$REMOTE_ADDR', '$p[pid]', '$cid')";
$r1 = mysql_query($q1, $s_dbid);
That works fine with RedHat, and was so till recently with Manrake as well. But now that I've decided to announce the official results, I see that the field "IP" has not been filled for some 2 months now. Initially, after I've reset the poll for the last time, this has been done. But without my interference that process of logging the IPs has suddenly stopped. I don't think that the fault is with my script, cause I tried exactly the same at Redhat and it works just fine... So I hope that you'll check what the problem is, or at least please inform me if that is done on purpose and I won't be able to use that feature anymore. Thank you in advance!