Scott From PA - 2003-11-20

What's Up Fellas?

I just installed the latest release of AuthLib successfully.

The script seems to work perfectly except for one thing.

When loggin on after completing the registration and clicking the URL (link sent via email) with the hash similar to this
confirm.php?hash=26d8b5ebbc032b8f81asd9f6777a32698&username=qqq  I get this error....

Error : You need to login to request this page

My first reaction was this was a database issue because the script has to check the data and confirm that the record exists before it can allow access.

So the first thing I did was make sure that all the tables were there here's what the script created.

   authlib_confirm
   authlib_confirm_email
   authlib_data
   authlib_login

as far as I can tell this is everything..
I checked all the tables and it looks like all the tables are appending data.

The only thing I can think of is that it might be a var issue in the config.php.inc file.?
Here what I entered there

var $server = "localhost";  // mysql server name  ( I know this is correct)
var $db_user = "username"; // username ( I know this is correct)
var $db_pass = "password"; // password ( I know this is correct)
var $database = "queenbeeparty_com"; // db name  ( I know this is correct)
var $secret = "chunkydogbarfspew"; // secret key, CHANGE THIS!  ( could this be an issue is chunkydogbarfspew to large)
var $wsname = "mywebsitename.com"; // website name  ( I know this is correct)
var $config_reg_subj = "website name registration"; // registration email subject   ( I know this is correct)
var $webmaster = " Administration <myemail address>"; // webmaster email address ( I know this is correct)
var $server_url = "http://www.websitename.com/0_EmployessOnly/";   (This has to be correct be cause the link works fine in the email message)

I'm stumped.
Could it be CHMOD issue?

Thanks
Scott
West Chester PA