1 (edited by rawrhythms 2006-12-07 14:45)

Topic: Unable to fetch guest information.

Unable to fetch guest information. The table 'punbb_users' must contain an entry with id = 1 that represents anonymous users.

What does this mean?
I don't understand how my guest account was removed from the db.

Edit Update:
OK so I added the table info for guest, can someone show me all the default values for a guest cause I wanna make sure everything is right. I did get back in to my forum thought so I think it's ok.

2

Re: Unable to fetch guest information.

define('PUN_UNVERIFIED', 32000);
define('PUN_ADMIN', 1);
define('PUN_MOD', 2);
define('PUN_GUEST', 3);
define('PUN_MEMBER', 4);

Re: Unable to fetch guest information.

He means within the database, Mark

INSERT INTO '.$db_prefix."users (group_id, username, password, email) VALUES(3, 'Guest', 'Guest', 'Guest')

Re: Unable to fetch guest information.

Mark, Smartyes, thank you very much.