Welcome to Geeklog, Anonymous Thursday, March 28 2024 @ 05:04 pm EDT

Fix for broken polls on Mac OS X 10.2

  • Sunday, October 13 2002 @ 02:15 am EDT
  • Contributed by: Anonymous
  • Views: 5,487
Geeklog.net Polls do not work correctly for virtual sites on Mac OS X 10.2 from a regular install of GeekLog, the only flaw I have yet detected.

Mac OS X sets the environment variable REMOTE_ADDR to the IP of the server, not the remote user! Thus all votes appear to come from the same IP number.

As polls are restricted to one vote per IP number, only one vote can be cast for the entire site.

A quick fix is to put the following line at the beginning
of lib-common.php
$REMOTE_ADDR=$HTTP_PC_REMOTE_ADDR;

which will set REMOTE_ADDR to the correct remote address.