Quote:
Originally Posted by Ted S
The installer was unable to create a table for storing records. Please create one manually via phpmyadmin, mysql shell or similar.
Code:
CREATE TABLE vb.lgv (
id smallint(5) 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
|
Some reason it's not letting me write the table through the phpmyadmin either. I get a error:
#1142 - CREATE command denied to user
But I have all admin access rights.
Any suggestions?