Page 1 of 1

[SOLVED] general error - Could not get referers information

PostPosted: Sun May 06, 2007 3:19 pm
Author: joey_4ers
Hi guys ..

Just haveing a slight problem.

Nothing had been changed the error appered on its own. Not too sure why cant figure it out..

[flash=,:1mliv7j9]http://i86.photobucket.com/albums/k84/joey_4ers/cheww1.jpg[/flash:1mliv7j9]

The error happens when you log in to the site.. I have tried to reset sessions and also deleted my cookies but the error still appears..

any help would be apreciated ..

Thanks ..

PostPosted: Sun May 06, 2007 5:21 pm
Author: joey_4ers
Hi guys..

I just thought i'd let you know i solved the issue myself.

wiped phpbb_referers table and created a new one..

Just a question what does that do anyway ?

Code: Select all
DROP TABLE phpbb_referers;CREATE TABLE phpbb_referers (     referer_id mediumint(8) UNSIGNED NOT NULL auto_increment,     referer_host varchar(255) NOT NULL default '',     referer_url varchar(255) NOT NULL default '',     referer_ip varchar(8) NOT NULL default '',     referer_hits int(10) NOT NULL default '1',     referer_firstvisit int(11) DEFAULT '0' NOT NULL,     referer_lastvisit int(11) DEFAULT '0' NOT NULL,     PRIMARY KEY (referer_id));