Quote:
MySQL Error : Table 'worry1.userpage' doesn't exist
|
Did you read the MySQL warning? your userpage table doesn't exist.
you can insert it manually if the installer doesn't create the table.
PHP Code:
CREATE TABLE userpage (
userid int(15) unsigned NOT NULL default '0',
pagedata text NOT NULL,
rating int(11) NOT NULL default '0',
dateline int(10) NOT NULL default '0',
username varchar(255) NOT NULL default '',
views int(10) NOT NULL default '0',
numvotes int(11) NOT NULL default '0',
votetotal int(11) NOT NULL default '0',
PRIMARY KEY (userid)
) TYPE=MyISAM
need to know a bit about mysql + php to run a website.