Quote:
Originally Posted by Mla7a6
I just installed it.. and got it during the 4th phase of installation..
the file that I used was "hack_install.php"
naah.. thats the path to my site.. I just copied & pasted the error message as it is..
|
phase four, that's the queries right?
in "forums/install/hacks/maf/2/queries.php"
replace the contents of that file with
PHP Code:
<?php
// The query should probably be enclosed by '
// Be sure you include TABLE_PREFIX
// Replace 'build' with either 'new', 'uninstall', or the build number the query is meant to upgrade FROM.
$query['new'][] = 'CREATE TABLE maf_application (
appid int(10) NOT NULL auto_increment,
userid int(10) NOT NULL default \'0\',
email varchar(250) NOT NULL default \'\',
fullname varchar(250) NOT NULL default \'\',
age tinyint(4) NOT NULL default \'0\',
location varchar(250) NOT NULL default \'\',
timezone varchar(25) NOT NULL default \'\',
position varchar(250) NOT NULL default \'\',
why_them mediumtext NOT NULL,
what_they_bring mediumtext NOT NULL,
pactivity mediumtext NOT NULL,
globally_pactivity mediumtext NOT NULL,
plus_site mediumtext NOT NULL,
neg_site mediumtext NOT NULL,
better_than_rest mediumtext NOT NULL,
more mediumtext NOT NULL,
application_time int(10) NOT NULL default \'0\',
auto_mailed tinyint(4) default NULL,
PRIMARY KEY (appid)
);
';
$query['new'][] = 'CREATE TABLE maf_ratings (
ratingid int(10) NOT NULL auto_increment,
appid int(10) NOT NULL default \'0\',
userid int(10) NOT NULL default \'0\',
rating tinyint(4) NOT NULL default \'0\',
additional_comments mediumtext NOT NULL,
timestamp int(10) NOT NULL default \'0\',
PRIMARY KEY (ratingid),
KEY appid (appid),
KEY appid_2 (appid)
);
';
?>
and see if you still get the error