Quote:
Originally Posted by mindhunter77
Code:
MySQL Error : Table 'bbq.vblgv' doesn't exist
|
The table was not setup for some reason, you will need to either reinstall or manually create it:
Code:
CREATE TABLE bbq.lgv (
id int(7) unsigned NOT NULL auto_increment,
ipaddress VARCHAR(25) NOT NULL default '0.0.0.0',
firstaccess INT UNSIGNED NOT NULL DEFAULT '0',
views INT(4) NOT NULL DEFAULT '0',
lastactivity INT UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY indexs (ipaddress,views,lastactivity)
) TYPE=MyISAM