Never mind. I found out what was wrong. The $strUserAgent variable in the HTTPSession Class was in the wrong spot. The wrong version of the SQL in the __construct function:
PHP Code:
$stmt = "...AND ((now() - `created`) < '" . $strUserAgent . $this->session_lifespan . " seconds') AND `user_agent` = '" . "' AND..."
And now look at the right SQL:
PHP Code:
$stmt = "...AND ((now() - `created`) < '" . $this->session_lifespan . " seconds') AND `user_agent` = '" . $strUserAgent . "' AND..."
Notice how the ' . $strUserAgent' moved. Is was in the complete wrong area.
To Ed L.-T., Steven D. N., and/or Thomas M.: You should consider updating the Code for Download so this will work for future downloaders.
Thanks!
